├── .DS_Store ├── .gitignore ├── LICENSE ├── NERtcCallKit ├── NERtcCallKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── NERtcCallKit.xcscheme └── NERtcCallKit │ ├── Compat │ ├── INERtcCallKitCompat.h │ ├── NERtcCallKitCompatFactory.h │ ├── NERtcCallKitCompatFactory.m │ ├── NERtcCallKitCompat_1_0_0.h │ ├── NERtcCallKitCompat_1_0_0.m │ ├── NERtcCallKitCompat_1_1_0.h │ └── NERtcCallKitCompat_1_1_0.m │ ├── Consts │ ├── NERtcCallKitConsts.h │ ├── NERtcCallKitErrors.h │ ├── NERtcCallKitLog.h │ └── NERtcCallKitLog.m │ ├── Core │ ├── NERtcCallKit+Deprecations.h │ ├── NERtcCallKit+Deprecations.m │ ├── NERtcCallKit+Private.h │ ├── NERtcCallKit+Private.m │ ├── NERtcCallKit.h │ ├── NERtcCallKit.m │ ├── NERtcCallKitContext.h │ ├── NERtcCallKitContext.m │ ├── NERtcCallKitDelegateProxy.h │ ├── NERtcCallKitDelegateProxy.m │ ├── NERtcCallOptions.h │ └── NERtcCallOptions.m │ ├── Model │ ├── NERtcCallKitJoinChannelEvent.h │ └── NERtcCallKitJoinChannelEvent.m │ ├── Report │ ├── NCKEvent.h │ ├── NCKEvent.m │ ├── NCKEventReporter.h │ ├── NCKEventReporter.m │ ├── NCKEventType.h │ ├── NCKEventType.m │ ├── NERtcCallKit+Report.h │ └── NERtcCallKit+Report.m │ ├── Status │ ├── INERtcCallStatus.h │ ├── NERtcCallStatusCalledImpl.h │ ├── NERtcCallStatusCalledImpl.m │ ├── NERtcCallStatusCallingImpl.h │ ├── NERtcCallStatusCallingImpl.m │ ├── NERtcCallStatusIdleImpl.h │ ├── NERtcCallStatusIdleImpl.m │ ├── NERtcCallStatusInCallImpl.h │ └── NERtcCallStatusInCallImpl.m │ ├── Supporting Files │ ├── Info.plist │ └── NERtcCallKit-Prefix.h │ └── Utils │ ├── NCKRuntimeUtils.h │ ├── NCKRuntimeUtils.m │ ├── NERtcCallKitUtils.h │ └── NERtcCallKitUtils.m ├── NIMDemo ├── .DS_Store ├── NIM.xcodeproj │ ├── NIMDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── NIM.xcscheme │ │ ├── NotificationScene.xcscheme │ │ └── NotificationService.xcscheme ├── NIM.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── NIMDemo │ ├── .DS_Store │ ├── Classes │ │ ├── .DS_Store │ │ ├── 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 │ │ │ ├── UITextView+NTES.h │ │ │ ├── UITextView+NTES.m │ │ │ ├── UIView+NTES.h │ │ │ └── UIView+NTES.m │ │ ├── Common │ │ │ ├── Addons │ │ │ │ ├── SwizzlingDefine.h │ │ │ │ ├── UINavigationBar+Swizzling.h │ │ │ │ ├── UINavigationBar+Swizzling.m │ │ │ │ ├── UINavigationController+Swizzling.h │ │ │ │ ├── UINavigationController+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 │ │ │ │ ├── NTESBadgeView.h │ │ │ │ ├── NTESBadgeView.m │ │ │ │ ├── NTESFPSLabel.h │ │ │ │ ├── NTESFPSLabel.m │ │ │ │ ├── NTESMarginButton.h │ │ │ │ ├── NTESMarginButton.m │ │ │ │ ├── NTESPageView.h │ │ │ │ └── NTESPageView.m │ │ ├── LayoutConfig │ │ │ ├── NTESCellLayoutConfig.h │ │ │ ├── NTESCellLayoutConfig.m │ │ │ ├── NTESChatroomRobotContentConfig.h │ │ │ ├── NTESChatroomRobotContentConfig.m │ │ │ ├── NTESChatroomTextContentConfig.h │ │ │ ├── NTESChatroomTextContentConfig.m │ │ │ ├── NTESSessionCustomContentConfig.h │ │ │ └── NTESSessionCustomContentConfig.m │ │ ├── Private │ │ │ ├── NTESPrivatizationManager.h │ │ │ └── NTESPrivatizationManager.m │ │ ├── Sections │ │ │ ├── Card │ │ │ │ ├── View │ │ │ │ │ ├── NTESCardPortraitCell.h │ │ │ │ │ ├── NTESCardPortraitCell.m │ │ │ │ │ ├── NTESColorButtonCell.h │ │ │ │ │ └── NTESColorButtonCell.m │ │ │ │ └── ViewController │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── NTESJionTeamViewController.xib │ │ │ │ │ └── NTESSearchTeamViewController.xib │ │ │ │ │ ├── NTESJionTeamViewController.h │ │ │ │ │ ├── NTESJionTeamViewController.m │ │ │ │ │ ├── NTESPersonalCardViewController.h │ │ │ │ │ ├── NTESPersonalCardViewController.m │ │ │ │ │ ├── NTESRobotCardViewController.h │ │ │ │ │ ├── NTESRobotCardViewController.m │ │ │ │ │ ├── NTESRobotCardViewController.xib │ │ │ │ │ ├── NTESSearchTeamViewController.h │ │ │ │ │ ├── NTESSearchTeamViewController.m │ │ │ │ │ ├── NTESSessionCardViewController.h │ │ │ │ │ ├── NTESSessionCardViewController.m │ │ │ │ │ ├── NTESTeamListViewController.h │ │ │ │ │ ├── NTESTeamListViewController.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── NTESJionTeamViewController.strings │ │ │ │ │ └── NTESSearchTeamViewController.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── NTESJionTeamViewController.strings │ │ │ │ │ └── NTESSearchTeamViewController.strings │ │ │ ├── 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 │ │ │ │ │ ├── NTESSessionRobotContentView.h │ │ │ │ │ └── NTESSessionRobotContentView.m │ │ │ ├── Collect │ │ │ │ └── ViewController │ │ │ │ │ ├── NTESCollectMessageListViewController.h │ │ │ │ │ └── NTESCollectMessageListViewController.m │ │ │ ├── Contact │ │ │ │ ├── Helper │ │ │ │ │ ├── NTESCustomSysNotificationSender.h │ │ │ │ │ └── NTESCustomSysNotificationSender.m │ │ │ │ ├── Model │ │ │ │ │ ├── NTESContactDataMember.h │ │ │ │ │ ├── NTESContactDataMember.m │ │ │ │ │ ├── NTESGroupedContacts.h │ │ │ │ │ ├── NTESGroupedContacts.m │ │ │ │ │ ├── NTESGroupedDataCollection.h │ │ │ │ │ └── NTESGroupedDataCollection.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 │ │ │ │ │ ├── NTESContactSearchViewController.h │ │ │ │ │ ├── NTESContactSearchViewController.m │ │ │ │ │ ├── NTESContactViewController.h │ │ │ │ │ ├── NTESContactViewController.m │ │ │ │ │ ├── NTESContactViewController.xib │ │ │ │ │ ├── NTESRobotListViewController.h │ │ │ │ │ └── NTESRobotListViewController.m │ │ │ ├── Login │ │ │ │ ├── Manager │ │ │ │ │ ├── NTESCountDownManager.h │ │ │ │ │ ├── NTESCountDownManager.m │ │ │ │ │ ├── NTESLoginManager.h │ │ │ │ │ ├── NTESLoginManager.m │ │ │ │ │ ├── NTESSmsLoginParams.h │ │ │ │ │ ├── NTESSmsLoginParams.m │ │ │ │ │ ├── NTESSmsLoginResult.h │ │ │ │ │ ├── NTESSmsLoginResult.m │ │ │ │ │ ├── NTESSmsRegisterParams.h │ │ │ │ │ └── NTESSmsRegisterParams.m │ │ │ │ └── ViewController │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── NTESLoginViewController.xib │ │ │ │ │ └── NTESRegisterViewController.xib │ │ │ │ │ ├── NTESLoginViewController.h │ │ │ │ │ ├── NTESLoginViewController.m │ │ │ │ │ ├── NTESRegisterViewController.h │ │ │ │ │ ├── NTESRegisterViewController.m │ │ │ │ │ ├── NTESSmsLoginViewController.h │ │ │ │ │ ├── NTESSmsLoginViewController.m │ │ │ │ │ ├── NTESSmsLoginViewController.xib │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── NTESLoginViewController.strings │ │ │ │ │ └── NTESRegisterViewController.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── NTESLoginViewController.strings │ │ │ │ │ └── NTESRegisterViewController.strings │ │ │ ├── Notification │ │ │ │ ├── DB │ │ │ │ │ ├── NTESCustomNotificationDB.h │ │ │ │ │ └── NTESCustomNotificationDB.m │ │ │ │ ├── Model │ │ │ │ │ ├── NTESCustomNotificationObject.h │ │ │ │ │ └── NTESCustomNotificationObject.m │ │ │ │ ├── NTESCustomSysNotificationViewController.h │ │ │ │ ├── NTESCustomSysNotificationViewController.m │ │ │ │ ├── NTESCustomSysNotificationViewController.xib │ │ │ │ ├── NTESSystemNotificationCell.h │ │ │ │ ├── NTESSystemNotificationCell.m │ │ │ │ ├── NTESSystemNotificationViewController.h │ │ │ │ ├── NTESSystemNotificationViewController.m │ │ │ │ ├── NTESSystemNotificationViewController.xib │ │ │ │ ├── en.lproj │ │ │ │ │ └── NTESSystemNotificationCell.xib │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── NTESSystemNotificationCell.xib │ │ │ ├── Session │ │ │ │ ├── Config │ │ │ │ │ ├── NTESSessionConfig.h │ │ │ │ │ ├── NTESSessionConfig.m │ │ │ │ │ ├── NTESThreadSessionConfig.h │ │ │ │ │ └── NTESThreadSessionConfig.m │ │ │ │ ├── Object │ │ │ │ │ ├── Atttach │ │ │ │ │ │ ├── NTESChartletAttachment.h │ │ │ │ │ │ ├── NTESChartletAttachment.m │ │ │ │ │ │ ├── NTESJanKenPonAttachment.h │ │ │ │ │ │ ├── NTESJanKenPonAttachment.m │ │ │ │ │ │ ├── NTESMultiRetweetAttachment.h │ │ │ │ │ │ ├── NTESMultiRetweetAttachment.m │ │ │ │ │ │ ├── NTESRedPacketAttachment.h │ │ │ │ │ │ ├── NTESRedPacketAttachment.m │ │ │ │ │ │ ├── NTESRedPacketTipAttachment.h │ │ │ │ │ │ ├── NTESRedPacketTipAttachment.m │ │ │ │ │ │ ├── NTESSnapchatAttachment.h │ │ │ │ │ │ ├── NTESSnapchatAttachment.m │ │ │ │ │ │ ├── NTESWhiteboardAttachment.h │ │ │ │ │ │ └── NTESWhiteboardAttachment.m │ │ │ │ │ ├── Manager │ │ │ │ │ │ ├── NTESMergeForwardSession.h │ │ │ │ │ │ ├── NTESMergeForwardSession.m │ │ │ │ │ │ ├── NTESMessageSerialization.h │ │ │ │ │ │ ├── NTESMessageSerialization.m │ │ │ │ │ │ ├── NTESMigrateHeader.h │ │ │ │ │ │ ├── NTESMigrateHeader.m │ │ │ │ │ │ ├── NTESRedPacketManager.h │ │ │ │ │ │ └── NTESRedPacketManager.m │ │ │ │ │ ├── Misc │ │ │ │ │ │ ├── NTESCustomAttachmentDecoder.h │ │ │ │ │ │ ├── NTESCustomAttachmentDecoder.m │ │ │ │ │ │ ├── NTESCustomAttachmentDefines.h │ │ │ │ │ │ ├── NTESDbExceptionHandler.h │ │ │ │ │ │ ├── NTESDbExceptionHandler.m │ │ │ │ │ │ ├── NTESSearchLocalHistoryObject.h │ │ │ │ │ │ ├── NTESSearchLocalHistoryObject.m │ │ │ │ │ │ ├── NTESSessionFileStatusProtocol.h │ │ │ │ │ │ ├── NTESSessionMsgConverter.h │ │ │ │ │ │ └── NTESSessionMsgConverter.m │ │ │ │ │ └── Model │ │ │ │ │ │ ├── NTESMergeMessageDataSource.h │ │ │ │ │ │ ├── NTESMergeMessageDataSource.m │ │ │ │ │ │ ├── NTESMessageModel.h │ │ │ │ │ │ └── NTESMessageModel.m │ │ │ │ ├── View │ │ │ │ │ └── SessionCell │ │ │ │ │ │ ├── Search │ │ │ │ │ │ ├── NTESKeyWordMessageCell.h │ │ │ │ │ │ ├── NTESKeyWordMessageCell.m │ │ │ │ │ │ ├── NTESSearchCellLayoutConstant.h │ │ │ │ │ │ ├── NTESSearchMessageContentCell.h │ │ │ │ │ │ ├── NTESSearchMessageContentCell.m │ │ │ │ │ │ ├── NTESSearchMessageEntraceCell.h │ │ │ │ │ │ └── NTESSearchMessageEntraceCell.m │ │ │ │ │ │ └── SessionContentView │ │ │ │ │ │ ├── NTESSessionChartletContentView.h │ │ │ │ │ │ ├── NTESSessionChartletContentView.m │ │ │ │ │ │ ├── NTESSessionJankenponContentView.h │ │ │ │ │ │ ├── NTESSessionJankenponContentView.m │ │ │ │ │ │ ├── NTESSessionMultiRetweetContentView.h │ │ │ │ │ │ ├── NTESSessionMultiRetweetContentView.m │ │ │ │ │ │ ├── NTESSessionRedPacketContentView.h │ │ │ │ │ │ ├── NTESSessionRedPacketContentView.m │ │ │ │ │ │ ├── NTESSessionRedPacketTipContentView.h │ │ │ │ │ │ ├── NTESSessionRedPacketTipContentView.m │ │ │ │ │ │ ├── NTESSessionSnapchatContentView.h │ │ │ │ │ │ ├── NTESSessionSnapchatContentView.m │ │ │ │ │ │ ├── NTESSessionTipContentView.h │ │ │ │ │ │ ├── NTESSessionTipContentView.m │ │ │ │ │ │ ├── NTESSessionWhiteBoardContentView.h │ │ │ │ │ │ └── NTESSessionWhiteBoardContentView.m │ │ │ │ └── ViewController │ │ │ │ │ ├── Audio │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── NTESAudio2TextViewController.xib │ │ │ │ │ ├── NTESAudio2TextViewController.h │ │ │ │ │ ├── NTESAudio2TextViewController.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── NTESAudio2TextViewController.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── NTESAudio2TextViewController.strings │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── NTESTeamReceiptDetailViewController.xib │ │ │ │ │ └── NTESTeamReceiptSendViewController.xib │ │ │ │ │ ├── File │ │ │ │ │ ├── NTESFilePreViewController.h │ │ │ │ │ ├── NTESFilePreViewController.m │ │ │ │ │ ├── NTESFilePreViewController.xib │ │ │ │ │ ├── NTESFileTransSelectViewController.h │ │ │ │ │ ├── NTESFileTransSelectViewController.m │ │ │ │ │ └── NTESFileTransSelectViewController.xib │ │ │ │ │ ├── Gallery │ │ │ │ │ ├── NTESGalleryViewController.h │ │ │ │ │ ├── NTESGalleryViewController.m │ │ │ │ │ ├── NTESGalleryViewController.xib │ │ │ │ │ ├── NTESMediaPreviewViewController.h │ │ │ │ │ └── NTESMediaPreviewViewController.m │ │ │ │ │ ├── MergeForward │ │ │ │ │ ├── NTESMergeMessageCell.h │ │ │ │ │ ├── NTESMergeMessageCell.m │ │ │ │ │ ├── NTESMergeMessageViewController.h │ │ │ │ │ ├── NTESMergeMessageViewController.m │ │ │ │ │ ├── NTESMessageCellFactory.h │ │ │ │ │ ├── NTESMessageCellFactory.m │ │ │ │ │ ├── NTESMulSelectFunctionBar.h │ │ │ │ │ ├── NTESMulSelectFunctionBar.m │ │ │ │ │ ├── NTESTimestampCell.h │ │ │ │ │ └── NTESTimestampCell.m │ │ │ │ │ ├── MigrateMessage │ │ │ │ │ ├── NTESExportMessageDelegateImpl.h │ │ │ │ │ ├── NTESExportMessageDelegateImpl.m │ │ │ │ │ ├── NTESExportMessageViewController.h │ │ │ │ │ ├── NTESExportMessageViewController.m │ │ │ │ │ ├── NTESImportMessageDelegateImpl.h │ │ │ │ │ ├── NTESImportMessageDelegateImpl.m │ │ │ │ │ ├── NTESImportMessageViewController.h │ │ │ │ │ ├── NTESImportMessageViewController.m │ │ │ │ │ ├── NTESMigrateCompleteView.h │ │ │ │ │ ├── NTESMigrateCompleteView.m │ │ │ │ │ ├── NTESMigrateMessageViewController.h │ │ │ │ │ ├── NTESMigrateMessageViewController.m │ │ │ │ │ ├── NTESMigrateProgressView.h │ │ │ │ │ └── NTESMigrateProgressView.m │ │ │ │ │ ├── NTESMessagePinListViewController.h │ │ │ │ │ ├── NTESMessagePinListViewController.m │ │ │ │ │ ├── NTESMessageRetrieveResultVC.h │ │ │ │ │ ├── NTESMessageRetrieveResultVC.m │ │ │ │ │ ├── NTESSessionHistoryViewController.h │ │ │ │ │ ├── NTESSessionHistoryViewController.m │ │ │ │ │ ├── NTESSessionLocalHistoryViewController.h │ │ │ │ │ ├── NTESSessionLocalHistoryViewController.m │ │ │ │ │ ├── NTESSessionPeekViewController.h │ │ │ │ │ ├── NTESSessionPeekViewController.m │ │ │ │ │ ├── NTESSessionRemoteHistoryViewController.h │ │ │ │ │ ├── NTESSessionRemoteHistoryViewController.m │ │ │ │ │ ├── NTESSessionViewController.h │ │ │ │ │ ├── NTESSessionViewController.m │ │ │ │ │ ├── NTESTeamReceiptDetailViewController.h │ │ │ │ │ ├── NTESTeamReceiptDetailViewController.m │ │ │ │ │ ├── NTESTeamReceiptSendViewController.h │ │ │ │ │ ├── NTESTeamReceiptSendViewController.m │ │ │ │ │ ├── NTESThreadTalkSessionViewController.h │ │ │ │ │ ├── NTESThreadTalkSessionViewController.m │ │ │ │ │ ├── RTCGroupVideoChat │ │ │ │ │ ├── NEGroupCallVC.h │ │ │ │ │ ├── NEGroupCallVC.m │ │ │ │ │ └── View │ │ │ │ │ │ ├── NECustomNavigationBar.h │ │ │ │ │ │ ├── NECustomNavigationBar.m │ │ │ │ │ │ ├── NEGroupCallCollectionCell.h │ │ │ │ │ │ ├── NEGroupCallCollectionCell.m │ │ │ │ │ │ ├── NEGroupCallView.h │ │ │ │ │ │ └── NEGroupCallView.m │ │ │ │ │ ├── RTCVideoChat │ │ │ │ │ ├── NECallViewController.h │ │ │ │ │ ├── NECallViewController.m │ │ │ │ │ └── View │ │ │ │ │ │ ├── NECustomButton.h │ │ │ │ │ │ ├── NECustomButton.m │ │ │ │ │ │ ├── NEVideoOperationView.h │ │ │ │ │ │ ├── NEVideoOperationView.m │ │ │ │ │ │ ├── NEVideoView.h │ │ │ │ │ │ └── NEVideoView.m │ │ │ │ │ ├── RealTimeSession │ │ │ │ │ └── View │ │ │ │ │ │ ├── NTESWhiteboardDrawView.h │ │ │ │ │ │ └── NTESWhiteboardDrawView.m │ │ │ │ │ ├── Video │ │ │ │ │ ├── NTESAVMoivePlayerController.h │ │ │ │ │ ├── NTESAVMoivePlayerController.m │ │ │ │ │ ├── NTESAVPlayerView.h │ │ │ │ │ ├── NTESAVPlayerView.m │ │ │ │ │ ├── NTESVideoViewController.h │ │ │ │ │ ├── NTESVideoViewController.m │ │ │ │ │ └── NTESVideoViewController.xib │ │ │ │ │ ├── VideoChat │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── NTESMeetingMember.h │ │ │ │ │ │ ├── NTESMeetingMember.m │ │ │ │ │ │ ├── NTESTeamMeetingCalleeInfo.h │ │ │ │ │ │ ├── NTESTeamMeetingCalleeInfo.m │ │ │ │ │ │ ├── NTESTeamMeetingCallerInfo.h │ │ │ │ │ │ └── NTESTeamMeetingCallerInfo.m │ │ │ │ │ ├── NTESTeamMeetingMutesViewController.h │ │ │ │ │ ├── NTESTeamMeetingMutesViewController.m │ │ │ │ │ ├── NTESTeamMeetingMutesViewController.xib │ │ │ │ │ └── View │ │ │ │ │ │ ├── NTESGLView.h │ │ │ │ │ │ ├── NTESGLView.m │ │ │ │ │ │ ├── NTESRecordSelectView.h │ │ │ │ │ │ ├── NTESRecordSelectView.m │ │ │ │ │ │ ├── NTESTeamMeetingCollectionViewCell.h │ │ │ │ │ │ ├── NTESTeamMeetingCollectionViewCell.m │ │ │ │ │ │ ├── NTESTeamMeetingMuteCell.h │ │ │ │ │ │ ├── NTESTeamMeetingMuteCell.m │ │ │ │ │ │ └── ijksdl │ │ │ │ │ │ ├── gles2 │ │ │ │ │ │ ├── color.c │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ ├── fsh │ │ │ │ │ │ │ ├── rgb.fsh.c │ │ │ │ │ │ │ ├── yuv420p.fsh.c │ │ │ │ │ │ │ ├── yuv420sp.fsh.c │ │ │ │ │ │ │ └── yuv444p10le.fsh.c │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── renderer.c │ │ │ │ │ │ ├── renderer_rgb.c │ │ │ │ │ │ ├── renderer_yuv420p.c │ │ │ │ │ │ ├── renderer_yuv420sp.c │ │ │ │ │ │ ├── renderer_yuv444p10le.c │ │ │ │ │ │ ├── shader.c │ │ │ │ │ │ └── vsh │ │ │ │ │ │ │ └── mvp.vsh.c │ │ │ │ │ │ ├── ijksdl.h │ │ │ │ │ │ ├── ijksdl_class.h │ │ │ │ │ │ ├── ijksdl_endian.h │ │ │ │ │ │ ├── ijksdl_error.h │ │ │ │ │ │ ├── ijksdl_fourcc.h │ │ │ │ │ │ ├── ijksdl_gles2.h │ │ │ │ │ │ ├── ijksdl_inc_internal.h │ │ │ │ │ │ ├── ijksdl_log.h │ │ │ │ │ │ ├── ijksdl_misc.h │ │ │ │ │ │ ├── ijksdl_mutex.h │ │ │ │ │ │ ├── ijksdl_stdinc.h │ │ │ │ │ │ ├── ijksdl_thread.h │ │ │ │ │ │ ├── ijksdl_timer.c │ │ │ │ │ │ ├── ijksdl_timer.h │ │ │ │ │ │ ├── ijksdl_video.h │ │ │ │ │ │ ├── ijksdl_vout.h │ │ │ │ │ │ └── ios │ │ │ │ │ │ ├── IJKSDLGLView.h │ │ │ │ │ │ ├── IJKSDLGLView.m │ │ │ │ │ │ ├── ijksdl_ios.h │ │ │ │ │ │ └── ijksdl_vout_overlay_videotoolbox.h │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── NTESTeamReceiptDetailViewController.strings │ │ │ │ │ └── NTESTeamReceiptSendViewController.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── NTESTeamReceiptDetailViewController.strings │ │ │ │ │ └── NTESTeamReceiptSendViewController.strings │ │ │ ├── SessionList │ │ │ │ ├── View │ │ │ │ │ ├── MutiCilentsCell │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ │ └── NTESMutiClientsCell.xib │ │ │ │ │ │ ├── NTESMutiClientsCell.h │ │ │ │ │ │ ├── NTESMutiClientsCell.m │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── NTESMutiClientsCell.strings │ │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ │ └── NTESMutiClientsCell.strings │ │ │ │ │ └── SessionListHeader │ │ │ │ │ │ ├── NTESListHeader.h │ │ │ │ │ │ ├── NTESListHeader.m │ │ │ │ │ │ ├── NTESMutiClientsHeaderView.h │ │ │ │ │ │ ├── NTESMutiClientsHeaderView.m │ │ │ │ │ │ ├── NTESTextHeaderView.h │ │ │ │ │ │ └── NTESTextHeaderView.m │ │ │ │ └── ViewController │ │ │ │ │ ├── NTESClientsTableViewController.h │ │ │ │ │ ├── NTESClientsTableViewController.m │ │ │ │ │ ├── NTESSessionListViewController.h │ │ │ │ │ ├── NTESSessionListViewController.m │ │ │ │ │ ├── NTESSessionSearchViewController.h │ │ │ │ │ ├── NTESSessionSearchViewController.m │ │ │ │ │ ├── NTESSessionServiceListVC.h │ │ │ │ │ └── NTESSessionServiceListVC.m │ │ │ ├── Setting │ │ │ │ ├── Base.lproj │ │ │ │ │ └── NTESAboutViewController.xib │ │ │ │ ├── Log │ │ │ │ │ ├── NTESLogManager.h │ │ │ │ │ ├── NTESLogManager.m │ │ │ │ │ ├── NTESLogUploader.h │ │ │ │ │ ├── NTESLogUploader.m │ │ │ │ │ ├── NTESLogViewController.h │ │ │ │ │ └── NTESLogViewController.m │ │ │ │ ├── NTESAboutViewController.h │ │ │ │ ├── NTESAboutViewController.m │ │ │ │ ├── NTESSettingViewController.h │ │ │ │ ├── NTESSettingViewController.m │ │ │ │ ├── NoDisturb │ │ │ │ │ ├── NTESNoDisturbSettingViewController.h │ │ │ │ │ ├── NTESNoDisturbSettingViewController.m │ │ │ │ │ ├── NTESNoDisturbSettingViewController.xib │ │ │ │ │ └── View │ │ │ │ │ │ ├── NTESNoDisturbTimeCell.h │ │ │ │ │ │ ├── NTESNoDisturbTimeCell.m │ │ │ │ │ │ ├── NTESTextSettingCell.h │ │ │ │ │ │ └── NTESTextSettingCell.m │ │ │ │ ├── UInfo │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── NTESUserInfoSettingViewController.xib │ │ │ │ │ ├── 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 │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── NTESUserInfoSettingViewController.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ │ └── NTESUserInfoSettingViewController.strings │ │ │ │ ├── View │ │ │ │ │ ├── NTESBirthPickerView.h │ │ │ │ │ ├── NTESBirthPickerView.m │ │ │ │ │ ├── NTESSettingCheckCell.h │ │ │ │ │ ├── NTESSettingCheckCell.m │ │ │ │ │ ├── NTESSettingPortraitCell.h │ │ │ │ │ ├── NTESSettingPortraitCell.m │ │ │ │ │ ├── NTESSettingSwitcherCell.h │ │ │ │ │ └── NTESSettingSwitcherCell.m │ │ │ │ ├── en.lproj │ │ │ │ │ └── NTESAboutViewController.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── NTESAboutViewController.strings │ │ │ └── Subscribe │ │ │ │ ├── NTESSubscribeDefine.h │ │ │ │ ├── NTESSubscribeManager.h │ │ │ │ └── NTESSubscribeManager.m │ │ ├── Service │ │ │ ├── NTESDemoFetchChatroomTask.h │ │ │ ├── NTESDemoFetchChatroomTask.m │ │ │ ├── NTESDemoRegisterTask.h │ │ │ ├── NTESDemoRegisterTask.m │ │ │ ├── NTESDemoService.h │ │ │ ├── NTESDemoService.m │ │ │ └── NTESDemoServiceTask.h │ │ ├── Util │ │ │ ├── NERtcTokenUtils.h │ │ │ ├── NTESAVNotifier.h │ │ │ ├── NTESAVNotifier.m │ │ │ ├── NTESBundleSetting.h │ │ │ ├── NTESBundleSetting.m │ │ │ ├── NTESCADisplayLinkHolder.h │ │ │ ├── NTESCADisplayLinkHolder.m │ │ │ ├── NTESClientUtil.h │ │ │ ├── NTESClientUtil.m │ │ │ ├── NTESDemoConfig.h │ │ │ ├── NTESDemoConfig.m │ │ │ ├── NTESDevice.h │ │ │ ├── NTESDevice.m │ │ │ ├── NTESFileLocationHelper.h │ │ │ ├── NTESFileLocationHelper.m │ │ │ ├── NTESFileUtil.h │ │ │ ├── NTESFileUtil.m │ │ │ ├── NTESMessageUtil.h │ │ │ ├── NTESMessageUtil.m │ │ │ ├── NTESNoticationUtil.h │ │ │ ├── NTESNoticationUtil.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 │ │ └── Vendors │ │ │ ├── AlipaySDK │ │ │ ├── AlipaySDK.bundle │ │ │ │ ├── bar@2x.png │ │ │ │ ├── refresh@2x.png │ │ │ │ ├── refresh_click@2x.png │ │ │ │ ├── shutdown@2x.png │ │ │ │ └── shutdown_click@2x.png │ │ │ └── AlipaySDK.framework │ │ │ │ ├── AlipaySDK │ │ │ │ ├── Headers │ │ │ │ ├── APayAuthInfo.h │ │ │ │ └── AlipaySDK.h │ │ │ │ ├── Info.plist │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── RedPacket │ │ │ ├── JRMFHeader.h │ │ │ ├── JRMFSington.h │ │ │ ├── JRMFSington.m │ │ │ ├── JResource.bundle │ │ │ ├── bg_from_hongbao@2x.png │ │ │ ├── bg_pwd_L@2x.png │ │ │ ├── bg_to_hongbao@2x.png │ │ │ ├── btn_code@2x.png │ │ │ ├── btn_code_dis@2x.png │ │ │ ├── btn_exit@2x.png │ │ │ ├── btn_line@2x.png │ │ │ ├── btn_next@2x.png │ │ │ ├── ic_alipay@2x.png │ │ │ ├── ic_arrow@2x.png │ │ │ ├── ic_card@2x.png │ │ │ ├── ic_case@2x.png │ │ │ ├── ic_charge@2x.png │ │ │ ├── ic_check_off@2x.png │ │ │ ├── ic_check_on@2x.png │ │ │ ├── ic_circle@2x.png │ │ │ ├── ic_crown@2x.png │ │ │ ├── ic_envelope@2x.png │ │ │ ├── ic_hongbao@2x.png │ │ │ ├── ic_line@2x.png │ │ │ ├── ic_me@2x.png │ │ │ ├── ic_op_check@2x.png │ │ │ ├── ic_pin@2x.png │ │ │ ├── ic_point@2x.png │ │ │ ├── ic_pressed@2x.png │ │ │ ├── ic_pwd@2x.png │ │ │ ├── ic_selected@2x.png │ │ │ ├── ic_top_back_white@2x.png │ │ │ ├── ic_top_back_white_s@2x.png │ │ │ ├── ic_top_white_return@2x.png │ │ │ ├── ic_transfer@2x.png │ │ │ ├── ic_transfer_done.png │ │ │ ├── ic_transfer_due@2x.png │ │ │ ├── ic_transfer_get@2x.png │ │ │ ├── ic_transfer_return@2x.png │ │ │ ├── ic_transfer_wait@2x.png │ │ │ ├── ic_wx@2x.png │ │ │ ├── pck_openBG@2x.png │ │ │ ├── pck_openBtn@2x.png │ │ │ ├── pck_openExit@2x.png │ │ │ └── xiaobao_icon@2x.png │ │ │ ├── JYangToolKit.framework │ │ │ ├── Headers │ │ │ │ ├── JYangLib.h │ │ │ │ ├── JYangToolKit.h │ │ │ │ ├── JYangTools.h │ │ │ │ ├── NSDictionary+SafeObj.h │ │ │ │ ├── UIScrollView+JrmfRefresh.h │ │ │ │ ├── UISecretTextField.h │ │ │ │ ├── UITapLabel.h │ │ │ │ ├── UIThemeButton.h │ │ │ │ └── UIView+Frame.h │ │ │ ├── Info.plist │ │ │ └── JYangToolKit │ │ │ ├── JrmfPacketKit.framework │ │ │ ├── Headers │ │ │ │ ├── JrmfGetCustomerInfo.h │ │ │ │ ├── JrmfPacket.h │ │ │ │ └── JrmfPacketKit.h │ │ │ ├── Info.plist │ │ │ └── JrmfPacketKit │ │ │ ├── JrmfWalletKit.framework │ │ │ ├── Headers │ │ │ │ ├── JrmfWalletKit.h │ │ │ │ └── JrmfWalletSDK.h │ │ │ ├── Info.plist │ │ │ └── JrmfWalletKit │ │ │ ├── WalletResource.bundle │ │ │ ├── arrow@2x.png │ │ │ ├── bg_pwd@2x.png │ │ │ ├── bg_pwd_L@2x.png │ │ │ ├── btn_exit@2x.png │ │ │ ├── btn_line@2x.png │ │ │ ├── btn_line_red@2x.png │ │ │ ├── ic_add@2x.png │ │ │ ├── ic_alipay@2x.png │ │ │ ├── ic_apply_success@2x.png │ │ │ ├── ic_arrow@2x.png │ │ │ ├── ic_arrow_down@2x.png │ │ │ ├── ic_card@2x.png │ │ │ ├── ic_charge@2x.png │ │ │ ├── ic_circle@2x.png │ │ │ ├── ic_crown@2x.png │ │ │ ├── ic_frozen@2x.png │ │ │ ├── ic_in@2x.png │ │ │ ├── ic_me@2x.png │ │ │ ├── ic_null@2x.png │ │ │ ├── ic_out@2x.png │ │ │ ├── ic_pin@2x.png │ │ │ ├── ic_point@2x.png │ │ │ ├── ic_selected@2x.png │ │ │ ├── ic_selected_blue@2x.png │ │ │ ├── ic_success@2x.png │ │ │ ├── ic_switch@2x.png │ │ │ ├── ic_top_back_white@2x.png │ │ │ ├── ic_wx@2x.png │ │ │ ├── pay_logo_ali@2x.png │ │ │ ├── pay_logo_wx@2x.png │ │ │ ├── pic_card@2x.png │ │ │ ├── pic_charge@2x.png │ │ │ ├── pic_list@2x.png │ │ │ ├── pic_packet@2x.png │ │ │ ├── pic_safe@2x.png │ │ │ └── pic_user@2x.png │ │ │ └── jrmf.cer │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 120x120-1.png │ │ │ ├── 120x120.png │ │ │ ├── 180x180.png │ │ │ ├── 58x58.png │ │ │ ├── 80x80.png │ │ │ ├── 87x87.png │ │ │ └── Contents.json │ │ ├── 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 │ │ ├── ChatExt │ │ │ ├── Contents.json │ │ │ ├── icon_reply.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-tag-1.png │ │ │ │ ├── yx-demo-tag-1@2x.png │ │ │ │ └── yx-demo-tag-1@3x.png │ │ │ ├── menu_audio2text.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-9.png │ │ │ │ ├── yx-demo-icon-9@2x.png │ │ │ │ └── yx-demo-icon-9@3x.png │ │ │ ├── menu_choose.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-8.png │ │ │ │ ├── yx-demo-icon-8@2x.png │ │ │ │ └── yx-demo-icon-8@3x.png │ │ │ ├── menu_collect.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-4.png │ │ │ │ ├── yx-demo-icon-4@2x.png │ │ │ │ └── yx-demo-icon-4@3x.png │ │ │ ├── menu_copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-2.png │ │ │ │ ├── yx-demo-icon-2@2x.png │ │ │ │ └── yx-demo-icon-2@3x.png │ │ │ ├── menu_del.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-7.png │ │ │ │ ├── yx-demo-icon-7@2x.png │ │ │ │ └── yx-demo-icon-7@3x.png │ │ │ ├── menu_forword.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-3.png │ │ │ │ ├── yx-demo-icon-3@2x.png │ │ │ │ └── yx-demo-icon-3@3x.png │ │ │ ├── menu_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-5.png │ │ │ │ ├── yx-demo-icon-5@2x.png │ │ │ │ └── yx-demo-icon-5@3x.png │ │ │ ├── menu_reply.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-1.png │ │ │ │ ├── yx-demo-icon-1@2x.png │ │ │ │ └── yx-demo-icon-1@3x.png │ │ │ └── menu_revoke.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yx-demo-icon-6.png │ │ │ │ ├── yx-demo-icon-6@2x.png │ │ │ │ └── yx-demo-icon-6@3x.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 │ │ │ │ ├── icon_chatroom_normal@2x.png │ │ │ │ └── icon_chatroom_normal@3x.png │ │ │ ├── icon_chatroom_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_chatroom_pressed@2x.png │ │ │ │ └── icon_chatroom_pressed@3x.png │ │ │ └── icon_chatroom_seg_bkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_chatroom_seg_bkg@2x.png │ │ │ │ └── icon_chatroom_seg_bkg@3x.png │ │ ├── Contact │ │ │ ├── Contents.json │ │ │ ├── btn_search.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_search@2x.png │ │ │ │ └── btn_search@3x.png │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 1125x2436.png │ │ │ ├── 1242x2208.png │ │ │ ├── 640x1136-1.png │ │ │ ├── 640x1136.png │ │ │ ├── 640x960-1.png │ │ │ ├── 640x960.png │ │ │ ├── 750x1334.png │ │ │ └── Contents.json │ │ ├── Login │ │ │ ├── Contents.json │ │ │ ├── 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 │ │ │ └── login_phone.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── login_phone@2x.png │ │ │ │ └── login_phone@3x.png │ │ ├── Netcall │ │ │ ├── Contents.json │ │ │ ├── TeamMeeting │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_meeting_camera_disable_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_disable_normal@2x.png │ │ │ │ │ └── btn_meeting_camera_disable_normal@3x.png │ │ │ │ ├── btn_meeting_camera_disable_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_disable_pressed@2x.png │ │ │ │ │ └── btn_meeting_camera_disable_pressed@3x.png │ │ │ │ ├── btn_meeting_camera_disable_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_disable_selected@2x.png │ │ │ │ │ └── btn_meeting_camera_disable_selected@3x.png │ │ │ │ ├── btn_meeting_camera_disable_selected_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_disable_selected_pressed@2x.png │ │ │ │ │ └── btn_meeting_camera_disable_selected_pressed@3x.png │ │ │ │ ├── btn_meeting_camera_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_normal@2x.png │ │ │ │ │ └── btn_meeting_camera_normal@3x.png │ │ │ │ ├── btn_meeting_camera_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_pressed@2x.png │ │ │ │ │ └── btn_meeting_camera_pressed@3x.png │ │ │ │ ├── btn_meeting_camera_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_selected@2x.png │ │ │ │ │ └── btn_meeting_camera_selected@3x.png │ │ │ │ ├── btn_meeting_camera_selected_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_camera_selected_pressed@2x.png │ │ │ │ │ └── btn_meeting_camera_selected_pressed@3x.png │ │ │ │ ├── btn_meeting_hangup_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_hangup_normal@2x.png │ │ │ │ │ └── btn_meeting_hangup_normal@3x.png │ │ │ │ ├── btn_meeting_hangup_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_hangup_pressed@2x.png │ │ │ │ │ └── btn_meeting_hangup_pressed@3x.png │ │ │ │ ├── btn_meeting_mic_disable_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mic_disable_normal@2x.png │ │ │ │ │ └── btn_meeting_mic_disable_normal@3x.png │ │ │ │ ├── btn_meeting_mic_disable_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mic_disable_pressed@2x.png │ │ │ │ │ └── btn_meeting_mic_disable_pressed@3x.png │ │ │ │ ├── btn_meeting_mic_disable_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mic_disable_selected@2x.png │ │ │ │ │ └── btn_meeting_mic_disable_selected@3x.png │ │ │ │ ├── btn_meeting_mic_disable_selected_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mic_disable_selected_pressed@2x.png │ │ │ │ │ └── btn_meeting_mic_disable_selected_pressed@3x.png │ │ │ │ ├── btn_meeting_mute_disable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mute_disable@2x.png │ │ │ │ │ └── btn_meeting_mute_disable@3x.png │ │ │ │ ├── btn_meeting_mute_disable_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mute_disable_normal@2x.png │ │ │ │ │ └── btn_meeting_mute_disable_normal@3x.png │ │ │ │ ├── btn_meeting_mute_disable_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mute_disable_pressed@2x.png │ │ │ │ │ └── btn_meeting_mute_disable_pressed@3x.png │ │ │ │ ├── btn_meeting_mute_disable_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mute_disable_selected@2x.png │ │ │ │ │ └── btn_meeting_mute_disable_selected@3x.png │ │ │ │ ├── btn_meeting_mute_disable_selected_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mute_disable_selected_pressed@2x.png │ │ │ │ │ └── btn_meeting_mute_disable_selected_pressed@3x.png │ │ │ │ ├── btn_meeting_mute_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mute_normal@2x.png │ │ │ │ │ └── btn_meeting_mute_normal@3x.png │ │ │ │ ├── btn_meeting_mute_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_mute_pressed@2x.png │ │ │ │ │ └── btn_meeting_mute_pressed@3x.png │ │ │ │ ├── btn_meeting_speaker_disable_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_speaker_disable_normal@2x.png │ │ │ │ │ └── btn_meeting_speaker_disable_normal@3x.png │ │ │ │ ├── btn_meeting_speaker_disable_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_speaker_disable_pressed@2x.png │ │ │ │ │ └── btn_meeting_speaker_disable_pressed@3x.png │ │ │ │ ├── btn_meeting_speaker_disable_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_speaker_disable_selected@2x.png │ │ │ │ │ └── btn_meeting_speaker_disable_selected@3x.png │ │ │ │ ├── btn_meeting_speaker_disable_selected_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_meeting_speaker_disable_selected_pressed@2x.png │ │ │ │ │ └── btn_meeting_speaker_disable_selected_pressed@3x.png │ │ │ │ └── icon_meeting_default_avatar.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_meeting_default_avatar@2x.png │ │ │ │ │ └── icon_meeting_default_avatar@3x.png │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── netstat_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── netstat_4@2x.png │ │ ├── RTCVideoCall │ │ │ ├── Contents.json │ │ │ ├── call_accept.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 接听@2x.png │ │ │ │ └── 接听@3x.png │ │ │ ├── call_camera_off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── call_camera_off@2x.png │ │ │ ├── call_camera_on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── call_camera_on@2x.png │ │ │ ├── call_cancel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 拒绝@2x.png │ │ │ │ └── 拒绝@3x.png │ │ │ ├── call_cancel_phone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── call_cancel@2x.png │ │ │ ├── call_change_audio.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 视频转语音@2x.png │ │ │ │ └── 视频转语音@3x.png │ │ │ ├── call_close.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── call_close@2x.png │ │ │ ├── call_disable_listen.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── call_disable_listen@2x.png │ │ │ │ └── call_disable_listen@3x.png │ │ │ ├── call_listen.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── call_listen@2x.png │ │ │ │ └── call_listen@3x.png │ │ │ ├── call_mute.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── call_mute@2x.png │ │ │ │ └── call_mute@3x.png │ │ │ ├── call_switch_audio.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_switch_voice@2x.png │ │ │ ├── call_switch_camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 翻转@2x.png │ │ │ │ └── 翻转@3x.png │ │ │ ├── call_switch_video.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_switch_video@2x.png │ │ │ ├── call_voice_off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── call_voice_off@2x.png │ │ │ ├── call_voice_on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── call_voice_on@2x.png │ │ │ └── hangup.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hangup@2x.png │ │ ├── Redpacket │ │ │ ├── Contents.json │ │ │ ├── icon_redpacket_from_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_redpacket_from_normal@2x.png │ │ │ │ └── icon_redpacket_from_normal@3x.png │ │ │ ├── icon_redpacket_from_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_redpacket_from_pressed@2x.png │ │ │ │ └── icon_redpacket_from_pressed@3x.png │ │ │ ├── icon_redpacket_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_redpacket_normal@2x.png │ │ │ │ └── icon_redpacket_normal@3x.png │ │ │ ├── icon_redpacket_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_redpacket_pressed@2x.png │ │ │ │ └── icon_redpacket_pressed@3x.png │ │ │ ├── icon_redpacket_tip.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_redpacket_tip@2x.png │ │ │ │ └── icon_redpacket_tip@3x.png │ │ │ ├── icon_redpacket_to_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_redpacket_to_normal@2x.png │ │ │ │ └── icon_redpacket_to_normal@3x.png │ │ │ └── icon_redpacket_to_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_redpacket_to_pressed@2x.png │ │ │ │ └── icon_redpacket_to_pressed@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 │ │ │ ├── avatar_user@2x.png │ │ │ └── avatar_user@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 │ │ │ └── icon_contact_normal@2x.png │ │ │ ├── icon_contact_pressed.imageset │ │ │ ├── Contents.json │ │ │ └── icon_contact_pressed@2x.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_gallery_more_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_gallery_more_normal@2x.png │ │ │ └── icon_gallery_more_normal@3x.png │ │ │ ├── icon_gallery_more_pressed.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_gallery_more_pressed@2x.png │ │ │ └── icon_gallery_more_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 │ │ │ └── icon_message_normal@2x.png │ │ │ ├── icon_message_pressed.imageset │ │ │ ├── Contents.json │ │ │ └── icon_message_pressed@2x.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_robot_card_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_robot_card_normal@2x.png │ │ │ └── icon_robot_card_normal@3x.png │ │ │ ├── icon_robot_card_pressed.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_robot_card_pressed@2x.png │ │ │ └── icon_robot_card_pressed@3x.png │ │ │ ├── icon_robot_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_robot_normal@2x.png │ │ │ └── icon_robot_normal@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_sessionlist_more_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_sessionlist_more_normal@2x.png │ │ │ └── icon_sessionlist_more_normal@3x.png │ │ │ ├── icon_sessionlist_more_pressed.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_sessionlist_more_pressed@2x.png │ │ │ └── icon_sessionlist_more_pressed@3x.png │ │ │ ├── icon_setting_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_setting_normal@2x.png │ │ │ └── icon_setting_normal@3x.png │ │ │ ├── icon_setting_pressed.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_setting_pressed@2x.png │ │ │ └── icon_setting_pressed@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_team_receipt_normal.imageset │ │ │ ├── Contents.json │ │ │ ├── team_receipt_normal@2x.png │ │ │ └── team_receipt_normal@3x.png │ │ │ ├── icon_team_receipt_pressed.imageset │ │ │ ├── Contents.json │ │ │ ├── team_receipt_pressed@2x.png │ │ │ └── team_receipt_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 │ │ │ ├── select_yes.imageset │ │ │ ├── Contents.json │ │ │ ├── select_yes.png │ │ │ └── 打钩 (1).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 │ │ ├── English.lproj │ │ ├── Info.plist │ │ └── Localizable.strings │ │ ├── Files │ │ ├── 测试文件.icns │ │ ├── 测试文本.txt │ │ ├── 测试文本2.txt │ │ ├── 测试是啥阿斯蒂芬.mpq │ │ └── 测试测试测试.ttf │ │ ├── NIMDemoChartlet.bundle │ │ ├── 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 │ │ ├── NIMDev.entitlements │ │ ├── NIMKitEmoticon.bundle │ │ └── 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_10@2x.png │ │ │ ├── emoji_11@2x.png │ │ │ ├── emoji_12@2x.png │ │ │ ├── emoji_13@2x.png │ │ │ ├── emoji_145@2x.png │ │ │ ├── emoji_14@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_del_normal@2x.png │ │ │ ├── emoji_del_pressed@2x.png │ │ │ └── emoji_ios.plist │ │ ├── NIMKitResource.bundle │ │ ├── avatar_team@2x.png │ │ ├── avatar_user@2x.png │ │ ├── avatar_user@3x.png │ │ ├── bk_angle_mask.png │ │ ├── bk_angle_mask@2x.png │ │ ├── bk_angle_mask@3x.png │ │ ├── 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 │ │ ├── contact_bg@2x.png │ │ ├── contact_bg@3x.png │ │ ├── contact_head_selected@2x.png │ │ ├── contact_head_selected@3x.png │ │ ├── contact_select_pressed@2x.png │ │ ├── icon_accessory_normal@2x.png │ │ ├── icon_accessory_normal@3x.png │ │ ├── icon_accessory_pressed@2x.png │ │ ├── icon_accessory_pressed@3x.png │ │ ├── icon_accessory_selected@2x.png │ │ ├── icon_accessory_selected@3x.png │ │ ├── icon_add_normal@2x.png │ │ ├── icon_add_normal@3x.png │ │ ├── icon_add_pressed@2x.png │ │ ├── icon_add_pressed@3x.png │ │ ├── icon_audio@2x.png │ │ ├── icon_audio@3x.png │ │ ├── icon_audio_white@2x.png │ │ ├── icon_audio_white@3x.png │ │ ├── icon_avatar_del@2x.png │ │ ├── icon_avatar_del@3x.png │ │ ├── icon_cell_blue_normal@2x.png │ │ ├── icon_cell_blue_normal@3x.png │ │ ├── icon_cell_blue_pressed@2x.png │ │ ├── icon_cell_blue_pressed@3x.png │ │ ├── icon_cell_red_normal@2x.png │ │ ├── icon_cell_red_normal@3x.png │ │ ├── icon_cell_red_pressed@2x.png │ │ ├── icon_cell_red_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_pin@2x.png │ │ ├── icon_pin@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_remove_normal@2x.png │ │ ├── icon_remove_normal@3x.png │ │ ├── icon_remove_pressed@2x.png │ │ ├── icon_remove_pressed@3x.png │ │ ├── icon_reply_close.png │ │ ├── icon_reply_close@2x.png │ │ ├── icon_reply_close@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_team_creator@2x.png │ │ ├── icon_team_creator@3x.png │ │ ├── icon_team_manager@2x.png │ │ ├── icon_team_manager@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 │ │ ├── icon_video@2x.png │ │ ├── icon_video@3x.png │ │ ├── icon_video_white@2x.png │ │ └── icon_video_white@3x.png │ │ ├── NIMLanguage.bundle │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ └── zh.lproj │ │ │ └── Localizable.strings │ │ ├── NIMPro.entitlements │ │ ├── Resources │ │ ├── Meeting │ │ │ └── icon_meeting_connecting@2x.gif │ │ └── XMLTemplate.xml │ │ ├── Sounds │ │ ├── message.wav │ │ ├── video_chat_push.mp3 │ │ ├── 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 │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ │ ├── main.m │ │ ├── nim_debug.xcconfig │ │ ├── nim_embeded_frameworks.sh │ │ ├── nim_release.xcconfig │ │ ├── nim_strip_archs.sh │ │ └── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings ├── NotificationScene │ ├── Info.plist │ ├── MainInterface.storyboard │ ├── NotificationViewController.h │ └── NotificationViewController.m ├── NotificationService │ ├── Info.plist │ ├── NotificationService.h │ └── NotificationService.m ├── Podfile ├── Podfile.lock ├── Settings.bundle │ ├── Root.plist │ ├── Tester.plist │ ├── en.lproj │ │ └── Root.strings │ └── private.plist └── 请点NIM.xcworkspace进入工程.txt ├── NIMKit ├── .DS_Store ├── NIMKit.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── NIMKit │ ├── Classes │ ├── Category │ │ ├── AVAsset+NIMKit.h │ │ ├── AVAsset+NIMKit.m │ │ ├── M80AttributedLabel+NIMKit.h │ │ ├── M80AttributedLabel+NIMKit.m │ │ ├── NIMExtensionHelper.h │ │ ├── NIMExtensionHelper.m │ │ ├── NSBundle+NIMKit.h │ │ ├── NSBundle+NIMKit.m │ │ ├── NSDictionary+NIMKit.h │ │ ├── NSDictionary+NIMKit.m │ │ ├── NSString+NIMKit.h │ │ ├── NSString+NIMKit.m │ │ ├── UIButton+NIMKit.h │ │ ├── UIButton+NIMKit.m │ │ ├── UIColor+NIMKit.h │ │ ├── UIColor+NIMKit.m │ │ ├── UIImage+NIMKit.h │ │ ├── UIImage+NIMKit.m │ │ ├── UITableView+NIMScrollToBottom.h │ │ ├── UITableView+NIMScrollToBottom.m │ │ ├── UIView+NIM.h │ │ ├── UIView+NIM.m │ │ ├── UIView+NIMToast.h │ │ ├── UIView+NIMToast.m │ │ ├── YYAnimatedImageView+iOS14.h │ │ └── YYAnimatedImageView+iOS14.m │ ├── Global │ │ ├── NIMCommonTableData.h │ │ ├── NIMCommonTableData.m │ │ ├── NIMCommonTableDelegate.h │ │ ├── NIMCommonTableDelegate.m │ │ ├── NIMCommonTableViewCell.h │ │ ├── NIMGlobalMacro.h │ │ ├── NIMKitColorButtonCell.h │ │ ├── NIMKitColorButtonCell.m │ │ ├── NIMKitConfig.h │ │ ├── NIMKitConfig.m │ │ ├── NIMKitDataProviderImpl.h │ │ ├── NIMKitDataProviderImpl.m │ │ ├── NIMKitDependency.h │ │ ├── NIMKitIndependentModeExtraInfo.h │ │ ├── NIMKitIndependentModeExtraInfo.m │ │ ├── NIMKitProgressHUD.h │ │ ├── NIMKitProgressHUD.m │ │ ├── NIMKitSetting.h │ │ ├── NIMKitSetting.m │ │ ├── NIMKitSwitcherCell.h │ │ ├── NIMKitSwitcherCell.m │ │ ├── NIMKitUrlManager.h │ │ └── NIMKitUrlManager.m │ ├── NIMKit.h │ ├── NIMKit.m │ ├── Protocols │ │ ├── NIMCellConfig.h │ │ ├── NIMChatUIManagerProtocol.h │ │ ├── NIMInputProtocol.h │ │ ├── NIMKitDataProvider.h │ │ ├── NIMKitMessageProvider.h │ │ ├── NIMMessageCellProtocol.h │ │ └── NIMSessionConfig.h │ └── Sections │ │ ├── Collect │ │ ├── Controller │ │ │ ├── NIMCollectMessageListViewController.h │ │ │ └── NIMCollectMessageListViewController.m │ │ └── View │ │ │ ├── NIMCollectMessageCell.h │ │ │ └── NIMCollectMessageCell.m │ │ ├── Common │ │ ├── NIMAvatarImageView.h │ │ ├── NIMAvatarImageView.m │ │ ├── NIMBadgeView.h │ │ ├── NIMBadgeView.m │ │ ├── NIMCustomLeftBarView.h │ │ ├── NIMCustomLeftBarView.m │ │ ├── NIMKitKeyboardInfo.h │ │ ├── NIMKitKeyboardInfo.m │ │ ├── NIMKitMediaFetcher.h │ │ ├── NIMKitMediaFetcher.m │ │ ├── NIMKitMediaPickerController.h │ │ ├── NIMKitMediaPickerController.m │ │ ├── NIMKitMediaPickerDelegate.h │ │ ├── NIMKitNotificationFirer.h │ │ ├── NIMKitNotificationFirer.m │ │ ├── NIMKitTitleView.h │ │ ├── NIMKitTitleView.m │ │ ├── NIMLoadMoreFooterView.h │ │ ├── NIMLoadMoreFooterView.m │ │ ├── NIMLoadProgressView.h │ │ ├── NIMLoadProgressView.m │ │ ├── NIMMemberGroupView.h │ │ ├── NIMMemberGroupView.m │ │ ├── NIMPageView.h │ │ └── NIMPageView.m │ │ ├── Contact │ │ ├── Cell │ │ │ ├── NIMContactDataCell.h │ │ │ ├── NIMContactDataCell.m │ │ │ └── NIMContactDefines.h │ │ ├── ContactGroup │ │ │ ├── NIMGroupedData.h │ │ │ ├── NIMGroupedData.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 │ │ ├── NIMReplyContentView.h │ │ └── NIMReplyContentView.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 │ │ │ │ ├── NIMRtcCallRecordCntentConfig.m │ │ │ │ ├── NIMRtcCallRecordContentConfig.h │ │ │ │ ├── NIMRtcCallRecordContentConfig.m │ │ │ │ ├── NIMTextContentConfig.h │ │ │ │ ├── NIMTextContentConfig.m │ │ │ │ ├── NIMTipContentConfig.h │ │ │ │ ├── NIMTipContentConfig.m │ │ │ │ ├── NIMUnsupportContentConfig.h │ │ │ │ ├── NIMUnsupportContentConfig.m │ │ │ │ ├── NIMVideoContentConfig.h │ │ │ │ └── NIMVideoContentConfig.m │ │ │ ├── NIMCellLayoutConfig.h │ │ │ ├── NIMCellLayoutConfig.m │ │ │ └── ReplyContentConfig │ │ │ │ ├── NIMReplyedTextContentConfig.h │ │ │ │ └── NIMReplyedTextContentConfig.m │ │ ├── Manager │ │ │ ├── NIMChatUIManager.h │ │ │ └── NIMChatUIManager.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 │ │ │ ├── NIMAdvanceMenu.h │ │ │ ├── NIMAdvanceMenu.m │ │ │ ├── NIMAdvancedMessageCell.h │ │ │ ├── NIMAdvancedMessageCell.m │ │ │ ├── NIMCollectionViewLeftAlignedLayout.h │ │ │ ├── NIMCollectionViewLeftAlignedLayout.m │ │ │ ├── NIMLoadMoreView.h │ │ │ ├── NIMLoadMoreView.m │ │ │ ├── NIMMessageCell.h │ │ │ ├── NIMMessageCell.m │ │ │ ├── NIMMessagePinItemCell.h │ │ │ ├── NIMMessagePinItemCell.m │ │ │ ├── NIMQuickCommentCell.h │ │ │ ├── NIMQuickCommentCell.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 │ │ │ │ ├── NIMSessionRtcCallRecordContentView.h │ │ │ │ ├── NIMSessionRtcCallRecordContentView.m │ │ │ │ ├── NIMSessionRtcRecordContentView.m │ │ │ │ ├── NIMSessionTextContentView.h │ │ │ │ ├── NIMSessionTextContentView.m │ │ │ │ ├── NIMSessionUnknowContentView.h │ │ │ │ ├── NIMSessionUnknowContentView.m │ │ │ │ ├── NIMSessionVideoContentView.h │ │ │ │ ├── NIMSessionVideoContentView.m │ │ │ │ └── ReplyContentView │ │ │ │ │ ├── NIMReplyedTextContentView.h │ │ │ │ │ └── NIMReplyedTextContentView.m │ │ │ ├── UICollectionViewLeftAlignedLayout.h │ │ │ └── UICollectionViewLeftAlignedLayout.m │ │ └── ViewController │ │ │ ├── NIMLocationViewController.h │ │ │ ├── NIMLocationViewController.m │ │ │ ├── NIMMessagePinListViewController.h │ │ │ ├── NIMMessagePinListViewController.m │ │ │ ├── NIMSessionViewController.h │ │ │ └── NIMSessionViewController.m │ │ ├── SessionList │ │ ├── NIMSessionListViewController.h │ │ ├── NIMSessionListViewController.m │ │ └── View │ │ │ ├── NIMSessionListCell.h │ │ │ └── NIMSessionListCell.m │ │ ├── Team │ │ ├── DataSource │ │ │ ├── NIMTeamListDataManager.h │ │ │ ├── NIMTeamListDataManager.m │ │ │ └── NIMTeamMemberListDataSource.h │ │ ├── Model │ │ │ ├── NIMCardDataSourceProtocol.h │ │ │ ├── NIMCardOperationItem.h │ │ │ ├── NIMCardOperationItem.m │ │ │ ├── NIMMembersFetchOption.h │ │ │ ├── NIMMembersFetchOption.m │ │ │ ├── NIMTeamCardMemberItem.h │ │ │ ├── NIMTeamCardMemberItem.m │ │ │ ├── NIMTeamCardRowItem.h │ │ │ ├── NIMTeamCardRowItem.m │ │ │ ├── NIMTeamInfoData.h │ │ │ ├── NIMTeamInfoData.m │ │ │ ├── NIMUsrInfoData.h │ │ │ └── NIMUsrInfoData.m │ │ ├── NIMTeamHelper.h │ │ ├── NIMTeamHelper.m │ │ ├── VC │ │ │ ├── MemberCard │ │ │ │ ├── NIMTeamMemberCardViewController.h │ │ │ │ ├── NIMTeamMemberCardViewController.m │ │ │ │ ├── NIMTeamMemberListViewController.h │ │ │ │ ├── NIMTeamMemberListViewController.m │ │ │ │ ├── NIMTeamMuteMemberListViewController.h │ │ │ │ └── NIMTeamMuteMemberListViewController.m │ │ │ ├── TeamCard │ │ │ │ ├── BaseCard │ │ │ │ │ ├── NIMTeamCardOperationViewController.h │ │ │ │ │ ├── NIMTeamCardOperationViewController.m │ │ │ │ │ ├── NIMTeamCardViewController.h │ │ │ │ │ └── NIMTeamCardViewController.m │ │ │ │ ├── NIMAdvancedTeamCardViewController.h │ │ │ │ ├── NIMAdvancedTeamCardViewController.m │ │ │ │ ├── NIMNormalTeamCardViewController.h │ │ │ │ ├── NIMNormalTeamCardViewController.m │ │ │ │ ├── NIMSuperTeamCardViewController.h │ │ │ │ └── NIMSuperTeamCardViewController.m │ │ │ └── ToolCard │ │ │ │ ├── NIMCreateTeamAnnouncement.h │ │ │ │ ├── NIMCreateTeamAnnouncement.m │ │ │ │ ├── NIMTeamAnnouncementListViewController.h │ │ │ │ ├── NIMTeamAnnouncementListViewController.m │ │ │ │ ├── NIMTeamCardSelectedViewController.h │ │ │ │ └── NIMTeamCardSelectedViewController.m │ │ └── View │ │ │ ├── NIMCardHeaderCell.h │ │ │ ├── NIMCardHeaderCell.m │ │ │ ├── NIMTeamAnnouncementListCell.h │ │ │ ├── NIMTeamAnnouncementListCell.m │ │ │ ├── NIMTeamCardHeaderView.h │ │ │ ├── NIMTeamCardHeaderView.m │ │ │ ├── NIMTeamMemberCardHeaderCell.h │ │ │ ├── NIMTeamMemberCardHeaderCell.m │ │ │ ├── NIMTeamMemberListCell.h │ │ │ ├── NIMTeamMemberListCell.m │ │ │ ├── NIMTeamSwitchTableViewCell.h │ │ │ ├── NIMTeamSwitchTableViewCell.m │ │ │ ├── NIMTimePickerView.h │ │ │ └── NIMTimePickerView.m │ │ └── Util │ │ ├── NIMKitAuthorizationTool.h │ │ ├── NIMKitAuthorizationTool.m │ │ ├── NIMKitDevice.h │ │ ├── NIMKitDevice.m │ │ ├── NIMKitFileLocationHelper.h │ │ ├── NIMKitFileLocationHelper.m │ │ ├── NIMKitQuickCommentUtil.h │ │ ├── NIMKitQuickCommentUtil.m │ │ ├── NIMKitResourceResizer.h │ │ ├── NIMKitResourceResizer.m │ │ ├── NIMKitTimerHolder.h │ │ ├── NIMKitTimerHolder.m │ │ ├── NIMKitUtil.h │ │ ├── NIMKitUtil.m │ │ ├── NIMMessageUtil.h │ │ ├── NIMMessageUtil.m │ │ └── Spelling │ │ ├── NIMPinyinConverter.h │ │ ├── NIMPinyinConverter.m │ │ ├── NIMSpellingCenter.h │ │ └── NIMSpellingCenter.m │ └── Supporting Files │ ├── Info.plist │ └── en.lproj │ └── Localizable.strings └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/.DS_Store -------------------------------------------------------------------------------- /NERtcCallKit/NERtcCallKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NIMDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/.DS_Store -------------------------------------------------------------------------------- /NIMDemo/NIM.xcodeproj/NIMDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NIMDemo/NIM.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/.DS_Store -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/.DS_Store -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Sections/Card/ViewController/en.lproj/NTESSearchTeamViewController.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UITextField"; placeholder = "请输入群号进行搜索"; ObjectID = "9Be-s1-ci0"; */ 3 | "9Be-s1-ci0.placeholder" = "Please input team id"; 4 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Sections/Card/ViewController/zh-Hans.lproj/NTESSearchTeamViewController.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UITextField"; placeholder = "请输入群号进行搜索"; ObjectID = "9Be-s1-ci0"; */ 3 | "9Be-s1-ci0.placeholder" = "请输入群号进行搜索"; 4 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Sections/SessionList/View/MutiCilentsCell/en.lproj/NTESMutiClientsCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "下线"; ObjectID = "OeB-zB-Acr"; */ 3 | "OeB-zB-Acr.normalTitle" = "Offline"; 4 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Sections/SessionList/View/MutiCilentsCell/zh-Hans.lproj/NTESMutiClientsCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "下线"; ObjectID = "OeB-zB-Acr"; */ 3 | "OeB-zB-Acr.normalTitle" = "下线"; 4 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Sections/Setting/UInfo/en.lproj/NTESUserInfoSettingViewController.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Sections/Setting/UInfo/zh-Hans.lproj/NTESUserInfoSettingViewController.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/bar@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/refresh@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/refresh_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/refresh_click@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/shutdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/shutdown@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/shutdown_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.bundle/shutdown_click@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.framework/AlipaySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.framework/AlipaySDK -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.framework/Info.plist -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/AlipaySDK/AlipaySDK.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/bg_from_hongbao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/bg_from_hongbao@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/bg_pwd_L@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/bg_pwd_L@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/bg_to_hongbao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/bg_to_hongbao@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_code@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_code_dis@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_code_dis@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_exit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_exit@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_line@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/btn_next@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_alipay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_alipay@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_arrow@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_card@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_card@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_case@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_case@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_charge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_charge@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_check_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_check_off@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_check_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_check_on@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_circle@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_crown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_crown@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_envelope@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_envelope@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_hongbao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_hongbao@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_line@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_me@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_op_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_op_check@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_pin@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_point@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_pwd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_pwd@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_selected@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_top_back_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_top_back_white@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_top_back_white_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_top_back_white_s@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_top_white_return@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_top_white_return@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_done.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_due@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_due@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_get@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_get@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_return@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_return@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_wait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_transfer_wait@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_wx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/ic_wx@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/pck_openBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/pck_openBG@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/pck_openBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/pck_openBtn@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/pck_openExit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/pck_openExit@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/xiaobao_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JResource.bundle/xiaobao_icon@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JYangToolKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JYangToolKit.framework/Info.plist -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JYangToolKit.framework/JYangToolKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JYangToolKit.framework/JYangToolKit -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfPacketKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfPacketKit.framework/Info.plist -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfPacketKit.framework/JrmfPacketKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfPacketKit.framework/JrmfPacketKit -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfWalletKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfWalletKit.framework/Info.plist -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfWalletKit.framework/JrmfWalletKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/JrmfWalletKit.framework/JrmfWalletKit -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/arrow@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/bg_pwd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/bg_pwd@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/bg_pwd_L@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/bg_pwd_L@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/btn_exit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/btn_exit@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/btn_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/btn_line@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/btn_line_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/btn_line_red@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_add@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_alipay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_alipay@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_apply_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_apply_success@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_arrow@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_arrow_down@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_card@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_card@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_charge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_charge@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_circle@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_crown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_crown@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_frozen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_frozen@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_in@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_me@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_null@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_null@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_out@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_out@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_pin@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_point@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_selected@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_selected_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_selected_blue@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_success@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_switch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_switch@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_top_back_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_top_back_white@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_wx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/ic_wx@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pay_logo_ali@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pay_logo_ali@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pay_logo_wx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pay_logo_wx@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_card@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_card@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_charge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_charge@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_list@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_packet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_packet@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_safe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_safe@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/WalletResource.bundle/pic_user@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Classes/Vendors/RedPacket/jrmf.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Classes/Vendors/RedPacket/jrmf.cer -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/120x120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/120x120-1.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/120x120.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/180x180.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/58x58.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/80x80.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/87x87.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/1.imageset/1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/1.imageset/1.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/10.imageset/10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/10.imageset/10.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/2.imageset/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/2.imageset/2.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/3.imageset/3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/3.imageset/3.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/4.imageset/4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/4.imageset/4.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/5.imageset/5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/5.imageset/5.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/6.imageset/6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/6.imageset/6.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/7.imageset/7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/7.imageset/7.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/8.imageset/8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/8.imageset/8.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/9.imageset/9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/9.imageset/9.pdf -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Avatar/avatar_team.imageset/avatar_team@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Avatar/avatar_team.imageset/avatar_team@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/icon_reply.imageset/yx-demo-tag-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/icon_reply.imageset/yx-demo-tag-1.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/icon_reply.imageset/yx-demo-tag-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/icon_reply.imageset/yx-demo-tag-1@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/icon_reply.imageset/yx-demo-tag-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/icon_reply.imageset/yx-demo-tag-1@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_audio2text.imageset/yx-demo-icon-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_audio2text.imageset/yx-demo-icon-9.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_audio2text.imageset/yx-demo-icon-9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_audio2text.imageset/yx-demo-icon-9@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_audio2text.imageset/yx-demo-icon-9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_audio2text.imageset/yx-demo-icon-9@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_choose.imageset/yx-demo-icon-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_choose.imageset/yx-demo-icon-8.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_choose.imageset/yx-demo-icon-8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_choose.imageset/yx-demo-icon-8@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_choose.imageset/yx-demo-icon-8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_choose.imageset/yx-demo-icon-8@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_collect.imageset/yx-demo-icon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_collect.imageset/yx-demo-icon-4.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_collect.imageset/yx-demo-icon-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_collect.imageset/yx-demo-icon-4@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_collect.imageset/yx-demo-icon-4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_collect.imageset/yx-demo-icon-4@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_copy.imageset/yx-demo-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_copy.imageset/yx-demo-icon-2.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_copy.imageset/yx-demo-icon-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_copy.imageset/yx-demo-icon-2@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_copy.imageset/yx-demo-icon-2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_copy.imageset/yx-demo-icon-2@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_del.imageset/yx-demo-icon-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_del.imageset/yx-demo-icon-7.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_del.imageset/yx-demo-icon-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_del.imageset/yx-demo-icon-7@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_del.imageset/yx-demo-icon-7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_del.imageset/yx-demo-icon-7@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_forword.imageset/yx-demo-icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_forword.imageset/yx-demo-icon-3.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_forword.imageset/yx-demo-icon-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_forword.imageset/yx-demo-icon-3@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_forword.imageset/yx-demo-icon-3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_forword.imageset/yx-demo-icon-3@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_pin.imageset/yx-demo-icon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_pin.imageset/yx-demo-icon-5.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_pin.imageset/yx-demo-icon-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_pin.imageset/yx-demo-icon-5@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_pin.imageset/yx-demo-icon-5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_pin.imageset/yx-demo-icon-5@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_reply.imageset/yx-demo-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_reply.imageset/yx-demo-icon-1.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_reply.imageset/yx-demo-icon-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_reply.imageset/yx-demo-icon-1@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_reply.imageset/yx-demo-icon-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_reply.imageset/yx-demo-icon-1@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_revoke.imageset/yx-demo-icon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_revoke.imageset/yx-demo-icon-6.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_revoke.imageset/yx-demo-icon-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_revoke.imageset/yx-demo-icon-6@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_revoke.imageset/yx-demo-icon-6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/ChatExt/menu_revoke.imageset/yx-demo-icon-6@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Chatroom/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Chatroom/Cover/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Contact/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Contact/btn_search.imageset/btn_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Contact/btn_search.imageset/btn_search@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Contact/btn_search.imageset/btn_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Contact/btn_search.imageset/btn_search@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Contact/contact_bg.imageset/contact_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Contact/contact_bg.imageset/contact_bg@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_normal.imageset/icon_add_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_normal.imageset/icon_add_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_pressed.imageset/icon_add_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_pressed.imageset/icon_add_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Group/icon_remove_normal.imageset/icon_remove_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Group/icon_remove_normal.imageset/icon_remove_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_creator.imageset/icon_team_creator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_creator.imageset/icon_team_creator@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_manager.imageset/icon_team_manager@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_manager.imageset/icon_team_manager@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_gray.imageset/btn_dot_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_gray.imageset/btn_dot_gray@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_green.imageset/btn_dot_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_green.imageset/btn_dot_green@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/1125x2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/1125x2436.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/1242x2208.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x1136-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x1136-1.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x1136.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x960-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x960-1.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/640x960.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/750x1334.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_bg.imageset/login_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_bg.imageset/login_bg@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_clear.imageset/login_icon_clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_clear.imageset/login_icon_clear@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_pwd_.imageset/login_icon_pwd_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_pwd_.imageset/login_icon_pwd_@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_usr_.imageset/login_icon_usr_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_usr_.imageset/login_icon_usr_@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_phone.imageset/login_phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_phone.imageset/login_phone@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Login/login_phone.imageset/login_phone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Login/login_phone.imageset/login_phone@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/TeamMeeting/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_switch_av.imageset/btn_switch_av@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_switch_av.imageset/btn_switch_av@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/netcall_bkg.imageset/netcall_bkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/netcall_bkg.imageset/netcall_bkg@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_0.imageset/netstat_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_0.imageset/netstat_0@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_1.imageset/netstat_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_1.imageset/netstat_1@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_2.imageset/netstat_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_2.imageset/netstat_2@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_3.imageset/netstat_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_3.imageset/netstat_3@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_4.imageset/netstat_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_4.imageset/netstat_4@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_accept.imageset/接听@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_accept.imageset/接听@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_accept.imageset/接听@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_accept.imageset/接听@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_camera_on.imageset/call_camera_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_camera_on.imageset/call_camera_on@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_cancel.imageset/拒绝@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_cancel.imageset/拒绝@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_cancel.imageset/拒绝@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_cancel.imageset/拒绝@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_cancel_phone.imageset/call_cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_cancel_phone.imageset/call_cancel@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_change_audio.imageset/视频转语音@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_change_audio.imageset/视频转语音@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_change_audio.imageset/视频转语音@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_change_audio.imageset/视频转语音@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_close.imageset/call_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_close.imageset/call_close@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_listen.imageset/call_listen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_listen.imageset/call_listen@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_listen.imageset/call_listen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_listen.imageset/call_listen@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_mute.imageset/call_mute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_mute.imageset/call_mute@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_mute.imageset/call_mute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_mute.imageset/call_mute@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_switch_camera.imageset/翻转@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_switch_camera.imageset/翻转@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_switch_camera.imageset/翻转@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_switch_camera.imageset/翻转@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_voice_off.imageset/call_voice_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_voice_off.imageset/call_voice_off@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_voice_on.imageset/call_voice_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/call_voice_on.imageset/call_voice_on@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/hangup.imageset/hangup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/RTCVideoCall/hangup.imageset/hangup@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Redpacket/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/Setting/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/Clear_color_image.imageset/Clear_color_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/Clear_color_image.imageset/Clear_color_image@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/avatar_user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/avatar_user@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/avatar_user@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/avatar_user@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/btn_cross.imageset/btn_cross@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/btn_cross.imageset/btn_cross@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_jan.imageset/custom_msg_jan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_jan.imageset/custom_msg_jan@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_ken.imageset/custom_msg_ken@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_ken.imageset/custom_msg_ken@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_pon.imageset/custom_msg_pon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_pon.imageset/custom_msg_pon@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_back_normal.imageset/icon_back_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_back_normal.imageset/icon_back_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_back_pressed.imageset/icon_back_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_back_pressed.imageset/icon_back_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_file.imageset/icon_file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_file.imageset/icon_file@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@3X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@3X.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_robot_normal.imageset/icon_robot_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_robot_normal.imageset/icon_robot_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_robot_normal.imageset/icon_robot_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_robot_normal.imageset/icon_robot_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/login_input.imageset/login_input@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/login_input.imageset/login_input@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/select_yes.imageset/select_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/select_yes.imageset/select_yes.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/select_yes.imageset/打钩 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/select_yes.imageset/打钩 (1).png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Files/测试文件.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Files/测试文件.icns -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Files/测试文本.txt: -------------------------------------------------------------------------------- 1 | 这是一个测试文本 -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Files/测试文本2.txt: -------------------------------------------------------------------------------- 1 | 这是一个测试文本 2 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Files/测试是啥阿斯蒂芬.mpq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Files/测试是啥阿斯蒂芬.mpq -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Files/测试测试测试.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Files/测试测试测试.ttf -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd001@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd002@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd003@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd004@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd005@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd006@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd007@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd008@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd009@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd009@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd010@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd010@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd011@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd011@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd012@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd012@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd013@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd013@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd014@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd014@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd015@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd015@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd016@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd016@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd017@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd017@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd018@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd018@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd019@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd019@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd020@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd020@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd021@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd021@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd022@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd022@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd023@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd023@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd024@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd024@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd025@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd025@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd026@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd026@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd027@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd027@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd028@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd028@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd029@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd029@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd030@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd030@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd031@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd031@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd032@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd032@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd033@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd033@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd034@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd034@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd035@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd035@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd036@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd036@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd037@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd037@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd038@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd038@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd039@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd039@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd040@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd040@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd041@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd041@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd042@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd042@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd043@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd043@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd044@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd044@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd045@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd045@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd046@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd046@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd047@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd047@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd048@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/content/ajmd048@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/icon/ajmd_s_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/icon/ajmd_s_highlighted@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/icon/ajmd_s_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/ajmd/icon/ajmd_s_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt001@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt002@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt003@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt004@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt005@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt006@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt007@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt008@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt009@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt009@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt010@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt010@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt011@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt011@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt012@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt012@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt013@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt013@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt014@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt014@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt015@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt015@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt016@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt016@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt017@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt017@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt018@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt018@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt019@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt019@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt020@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/content/lt020@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/icon/lt_s_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/icon/lt_s_highlighted@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/icon/lt_s_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/lt/icon/lt_s_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy001@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy002@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy003@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy004@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy005@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy006@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy007@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy008@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy009@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy009@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy010@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy010@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy011@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy011@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy012@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy012@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy013@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy013@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy014@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy014@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy015@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy015@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy016@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy016@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy017@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy017@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy018@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy018@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy019@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy019@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy020@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy020@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy021@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy021@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy022@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy022@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy023@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy023@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy024@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy024@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy025@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy025@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy026@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy026@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy027@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy027@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy028@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy028@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy029@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy029@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy030@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy030@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy031@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy031@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy032@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy032@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy033@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy033@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy034@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy034@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy035@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy035@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy036@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy036@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy037@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy037@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy038@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy038@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy039@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy039@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy040@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/content/xxy040@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/icon/xxy_s_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/icon/xxy_s_highlighted@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/icon/xxy_s_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMDemoChartlet.bundle/xxy/icon/xxy_s_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_00@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_00@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_01@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_01@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_02@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_03@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_04@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_04@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_05@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_05@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_06@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_06@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_07@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_07@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_08@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_08@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_09@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_09@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_10@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_11@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_12@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_13@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_145@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_145@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_14@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_15@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_160@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_160@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_161@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_161@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_162@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_162@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_163@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_163@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_164@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_164@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_165@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_165@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_166@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_166@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_16@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_17@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_18@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_19@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_200@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_200@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_20@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_21@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_22@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_23@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_24@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_25@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_26@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_27@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_27@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_28@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_29@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_30@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_31@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_31@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_32@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_33@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_33@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/avatar_team@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/avatar_team@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/avatar_user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/avatar_user@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/avatar_user@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/avatar_user@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_angle_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_angle_mask.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_angle_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_angle_mask@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_angle_mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_angle_mask@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_bg@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_bg@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_head_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_head_selected@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_head_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_head_selected@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_select_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/contact_select_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_selected@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_accessory_selected@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_add_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio_white@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_audio_white@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_avatar_del@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_avatar_del@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_avatar_del@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_avatar_del@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_blue_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_cell_red_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_record_indicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_record_indicator@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_record_indicator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_record_indicator@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_pin@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_pin@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_voice_playing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_voice_playing@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_voice_playing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_voice_playing@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_remove_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_reply_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_reply_close.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_reply_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_reply_close@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_reply_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_reply_close@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_sender_text_node_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_creator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_creator@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_creator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_creator@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_manager@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_manager@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_manager@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_team_manager@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_pressed@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_emotion_pressed@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_keyboard_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_keyboard_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video_white@2x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_video_white@3x.png -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/NIMLanguage.bundle/zh.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | nim_language.strings 3 | NIM 4 | 5 | Created by He on 2019/11/22. 6 | Copyright © 2019 Netease. All rights reserved. 7 | */ 8 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Resources/Meeting/icon_meeting_connecting@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Resources/Meeting/icon_meeting_connecting@2x.gif -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/message.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/message.wav -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_push.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_push.mp3 -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_HangUp.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_HangUp.aac -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_OnCall.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_OnCall.aac -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_onTimer.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_onTimer.aac -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_receiver.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_receiver.aac -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_sender.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_sender.aac -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/Sounds/video_connect_chat_tip_sender.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/NIMDemo/Supporting Files/Sounds/video_connect_chat_tip_sender.aac -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | NIM 4 | 5 | Created by He on 2020/2/11. 6 | Copyright © 2020 Netease. All rights reserved. 7 | */ 8 | -------------------------------------------------------------------------------- /NIMDemo/NIMDemo/Supporting Files/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | NIM 4 | 5 | Created by zhanggenning on 2019/10/23. 6 | Copyright © 2019 Netease. All rights reserved. 7 | */ 8 | 9 | -------------------------------------------------------------------------------- /NIMDemo/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /NIMDemo/请点NIM.xcworkspace进入工程.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMDemo/请点NIM.xcworkspace进入工程.txt -------------------------------------------------------------------------------- /NIMKit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-kit/NIM_iOS_Demo/3b9fca91a02f94dc1450e49ae67997f5bf47c9e1/NIMKit/.DS_Store -------------------------------------------------------------------------------- /NIMKit/NIMKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | --------------------------------------------------------------------------------