├── .gitignore ├── LICENSE ├── MongoIM.podspec ├── MongoIM.xcodeproj └── project.pbxproj ├── MongoIM ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Brand Assets.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-1242x2208@3x.png │ │ ├── LaunchImage-1536x2008@2x.png │ │ ├── LaunchImage-1536x2048@2x.png │ │ ├── LaunchImage-320x480@1x.png │ │ ├── LaunchImage-640x1136@2x.png │ │ ├── LaunchImage-640x960@2x.png │ │ ├── LaunchImage-750x1334@2x.png │ │ ├── LaunchImage-768x1004@1x.png │ │ └── LaunchImage-768x1024@1x.png ├── Extend │ ├── Plugin │ │ └── Location │ │ │ ├── DFLocationChooseController.h │ │ │ ├── DFLocationChooseController.m │ │ │ ├── DFLocationInfo.h │ │ │ ├── DFLocationInfo.m │ │ │ ├── DFLocationPlugin.h │ │ │ ├── DFLocationPlugin.m │ │ │ ├── DFLocationViewController.h │ │ │ └── DFLocationViewController.m │ └── Vendor │ │ └── RongCloud │ │ ├── MessageHandler │ │ ├── DFRongCloudMessageHandler.h │ │ └── DFRongCloudMessageHandler.m │ │ ├── Model │ │ ├── RCEmotionMessage.h │ │ ├── RCEmotionMessage.m │ │ ├── RCNameCardMessage.h │ │ ├── RCNameCardMessage.m │ │ ├── RCRedBagMessage.h │ │ ├── RCRedBagMessage.m │ │ ├── RCShareMessage.h │ │ ├── RCShareMessage.m │ │ ├── RCShortVideoMessage.h │ │ └── RCShortVideoMessage.m │ │ ├── MongoToRongCloudAdapter │ │ ├── MongoToRongCloudEmotionMessageContentAdapter.h │ │ ├── MongoToRongCloudEmotionMessageContentAdapter.m │ │ ├── MongoToRongCloudImageMessageContentAdapter.h │ │ ├── MongoToRongCloudImageMessageContentAdapter.m │ │ ├── MongoToRongCloudLocationMessageContentAdapter.h │ │ ├── MongoToRongCloudLocationMessageContentAdapter.m │ │ ├── MongoToRongCloudMessageContentAdapter.h │ │ ├── MongoToRongCloudMessageContentAdapter.m │ │ ├── MongoToRongCloudMessageContentAdapterManager.h │ │ ├── MongoToRongCloudMessageContentAdapterManager.m │ │ ├── MongoToRongCloudNameCardMessageContentAdapter.h │ │ ├── MongoToRongCloudNameCardMessageContentAdapter.m │ │ ├── MongoToRongCloudRedBagMessageContentAdapter.h │ │ ├── MongoToRongCloudRedBagMessageContentAdapter.m │ │ ├── MongoToRongCloudShareMessageContentAdapter.h │ │ ├── MongoToRongCloudShareMessageContentAdapter.m │ │ ├── MongoToRongCloudShortVideoMessageContentAdapter.h │ │ ├── MongoToRongCloudShortVideoMessageContentAdapter.m │ │ ├── MongoToRongCloudTextMessageContentAdapter.h │ │ ├── MongoToRongCloudTextMessageContentAdapter.m │ │ ├── MongoToRongCloudVoiceMessageContentAdapter.h │ │ └── MongoToRongCloudVoiceMessageContentAdapter.m │ │ └── RongCloudToMongoAdapter │ │ ├── RongCloudToMongoEmotionMessageContentAdapter.h │ │ ├── RongCloudToMongoEmotionMessageContentAdapter.m │ │ ├── RongCloudToMongoImageMessageContentAdapter.h │ │ ├── RongCloudToMongoImageMessageContentAdapter.m │ │ ├── RongCloudToMongoInfomationNotificationMessageContentAdapter.h │ │ ├── RongCloudToMongoInfomationNotificationMessageContentAdapter.m │ │ ├── RongCloudToMongoLocationMessageContentAdapter.h │ │ ├── RongCloudToMongoLocationMessageContentAdapter.m │ │ ├── RongCloudToMongoMessageContentAdapter.h │ │ ├── RongCloudToMongoMessageContentAdapter.m │ │ ├── RongCloudToMongoMessageContentAdapterManager.h │ │ ├── RongCloudToMongoMessageContentAdapterManager.m │ │ ├── RongCloudToMongoNameCardMessageContentAdapter.h │ │ ├── RongCloudToMongoNameCardMessageContentAdapter.m │ │ ├── RongCloudToMongoRedBagMessageContentAdapter.h │ │ ├── RongCloudToMongoRedBagMessageContentAdapter.m │ │ ├── RongCloudToMongoShareMessageContentAdapter.h │ │ ├── RongCloudToMongoShareMessageContentAdapter.m │ │ ├── RongCloudToMongoShortVideoMessageContentAdapter.h │ │ ├── RongCloudToMongoShortVideoMessageContentAdapter.m │ │ ├── RongCloudToMongoTextMessageContentAdapter.h │ │ ├── RongCloudToMongoTextMessageContentAdapter.m │ │ ├── RongCloudToMongoVoiceMessageContentAdapter.h │ │ └── RongCloudToMongoVoiceMessageContentAdapter.m ├── Info.plist ├── MongoIM │ ├── Core │ │ ├── Model │ │ │ ├── Content │ │ │ │ ├── DFMessageContentManager.h │ │ │ │ ├── DFMessageContentManager.m │ │ │ │ ├── Media │ │ │ │ │ ├── DFEmotionMessageContent.h │ │ │ │ │ ├── DFEmotionMessageContent.m │ │ │ │ │ ├── DFImageMessageContent.h │ │ │ │ │ ├── DFImageMessageContent.m │ │ │ │ │ ├── DFLocationMessageContent.h │ │ │ │ │ ├── DFLocationMessageContent.m │ │ │ │ │ ├── DFMediaMessageContent.h │ │ │ │ │ ├── DFMediaMessageContent.m │ │ │ │ │ ├── DFNameCardMessageContent.h │ │ │ │ │ ├── DFNameCardMessageContent.m │ │ │ │ │ ├── DFRedBagMessageContent.h │ │ │ │ │ ├── DFRedBagMessageContent.m │ │ │ │ │ ├── DFShareMessageContent.h │ │ │ │ │ ├── DFShareMessageContent.m │ │ │ │ │ ├── DFShortVideoMessageContent.h │ │ │ │ │ ├── DFShortVideoMessageContent.m │ │ │ │ │ ├── DFTextMessageContent.h │ │ │ │ │ ├── DFTextMessageContent.m │ │ │ │ │ ├── DFVoiceMessageContent.h │ │ │ │ │ └── DFVoiceMessageContent.m │ │ │ │ └── Notify │ │ │ │ │ ├── DFInfoNotifyMessageContent.h │ │ │ │ │ ├── DFInfoNotifyMessageContent.m │ │ │ │ │ ├── DFNotifyMessageContent.h │ │ │ │ │ └── DFNotifyMessageContent.m │ │ │ ├── DFConversation.h │ │ │ ├── DFConversation.m │ │ │ ├── DFMessage.h │ │ │ ├── DFMessage.m │ │ │ ├── DFMessageContent.h │ │ │ ├── DFMessageContent.m │ │ │ ├── DFUserInfo.h │ │ │ └── DFUserInfo.m │ │ ├── MongoIMClient.h │ │ ├── MongoIMClient.m │ │ └── Storage │ │ │ ├── DFCommonStorageService.h │ │ │ ├── DFCommonStorageService.m │ │ │ ├── DFMessageStorageService.h │ │ │ └── DFMessageStorageService.m │ ├── Lib │ │ ├── DFShapedImageView.h │ │ ├── DFShapedImageView.m │ │ └── LCVoiceHud │ │ │ ├── LCVoice.h │ │ │ └── LCVoice.m │ ├── Macro │ │ ├── ConnectionStatus.h │ │ ├── Key.h │ │ └── MessageContentType.h │ ├── MessageHandler │ │ ├── DFBaseMessageHandler.h │ │ ├── DFBaseMessageHandler.m │ │ ├── DFMongoMessageHandler.h │ │ └── DFMongoMessageHandler.m │ ├── MongoIM.h │ ├── MongoIM.m │ ├── Resource │ │ ├── Bubble │ │ │ ├── ReceiverAppNodeBkg@2x.png │ │ │ ├── ReceiverAppNodeBkg@3x.png │ │ │ ├── ReceiverImageNodeBorder@2x.png │ │ │ ├── ReceiverImageNodeBorder@3x.png │ │ │ ├── ReceiverImageNodeMask@2x.png │ │ │ ├── ReceiverTextNodeBkg@2x.png │ │ │ ├── ReceiverTextNodeBkg@3x.png │ │ │ ├── ReceiverTextNodeBkgHL@2x.png │ │ │ ├── ReceiverTextNodeBkgHL@3x.png │ │ │ ├── ReceiverVoiceNodeBack@2x.png │ │ │ ├── ReceiverVoiceNodeBack@3x.png │ │ │ ├── SenderAppCardNodeBkg@2x.png │ │ │ ├── SenderAppCardNodeBkg_HL@2x.png │ │ │ ├── SenderAppNodeBkg@2x.png │ │ │ ├── SenderAppNodeBkg@3x.png │ │ │ ├── SenderAppNodeBkg_HL@2x.png │ │ │ ├── SenderAppNodeBkg_HL@3x.png │ │ │ ├── SenderImageNodeBorder@2x.png │ │ │ ├── SenderImageNodeBorder@3x.png │ │ │ ├── SenderImageNodeMask@2x.png │ │ │ ├── SenderTextNodeBkg1@2x.png │ │ │ ├── SenderTextNodeBkg@2x.png │ │ │ ├── SenderTextNodeBkg@3x.png │ │ │ ├── SenderTextNodeBkgHL@2x.png │ │ │ ├── SenderTextNodeBkgHL@3x.png │ │ │ ├── SenderVoiceNodeBack@2x.png │ │ │ ├── SenderVoiceNodeBack@3x.png │ │ │ ├── c2cReceiverMsgNodeBG@2x.png │ │ │ ├── c2cReceiverMsgNodeBG@3x.png │ │ │ ├── c2cReceiverMsgNodeBG_HL@2x.png │ │ │ ├── c2cReceiverMsgNodeBG_HL@3x.png │ │ │ ├── c2cSenderMsgNodeBG@2x.png │ │ │ ├── c2cSenderMsgNodeBG@3x.png │ │ │ ├── c2cSenderMsgNodeBG_HL@2x.png │ │ │ └── c2cSenderMsgNodeBG_HL@3x.png │ │ ├── Emotions │ │ │ ├── DeleteEmoticonBtn@2x.png │ │ │ ├── EmotionAdd@2x.png │ │ │ ├── EmotionsBagAdd@2x.png │ │ │ ├── EmotionsBagTabBg@2x.png │ │ │ ├── EmotionsBagTabBgFocus@2x.png │ │ │ ├── EmotionsEmojiHL@2x.png │ │ │ ├── EmotionsSendBtnBlue@2x.png │ │ │ ├── EmotionsSendBtnBlueHL@2x.png │ │ │ ├── EmotionsSendBtnGrey@2x.png │ │ │ └── EmotionsSetting@2x.png │ │ ├── InputToolbar │ │ │ ├── ToolViewEmotion@2x.png │ │ │ ├── ToolViewEmotion@3x.png │ │ │ ├── ToolViewEmotionHL@2x.png │ │ │ ├── ToolViewEmotionHL@3x.png │ │ │ ├── ToolViewInputVoice@2x.png │ │ │ ├── ToolViewInputVoice@3x.png │ │ │ ├── ToolViewInputVoiceHL@2x.png │ │ │ ├── ToolViewInputVoiceHL@3x.png │ │ │ ├── ToolViewKeyboard@2x.png │ │ │ ├── ToolViewKeyboard@3x.png │ │ │ ├── ToolViewKeyboardHL@2x.png │ │ │ ├── ToolViewKeyboardHL@3x.png │ │ │ ├── ToolViewPlugin@2x.png │ │ │ ├── ToolViewPlugin@3x.png │ │ │ ├── ToolViewPluginHL@2x.png │ │ │ ├── ToolViewPluginHL@3x.png │ │ │ ├── VoiceBtn_Black@2x.png │ │ │ ├── VoiceBtn_Black@3x.png │ │ │ ├── VoiceBtn_BlackHL@2x.png │ │ │ └── VoiceBtn_BlackHL@3x.png │ │ ├── Other │ │ │ ├── DefaultHead@2x.png │ │ │ ├── MessageSendFail@2x.png │ │ │ ├── MessageSendFail@3x.png │ │ │ ├── RedBag@2x.png │ │ │ ├── barbuttonicon_add@2x.png │ │ │ ├── barbuttonicon_add@3x.png │ │ │ ├── fileicon_link@2x.png │ │ │ ├── fileicon_loc90@2x.png │ │ │ ├── fileicon_loc90@3x.png │ │ │ ├── image_bg@2x.png │ │ │ ├── located_pin@2x.png │ │ │ ├── located_pin@3x.png │ │ │ ├── location_my@2x.png │ │ │ ├── location_my@3x.png │ │ │ ├── location_my_current@2x.png │ │ │ └── location_my_current@3x.png │ │ ├── Plugins │ │ │ ├── Defaults │ │ │ │ ├── sharemorePay@2x.png │ │ │ │ ├── sharemorePay@3x.png │ │ │ │ ├── sharemore_friendcard@2x.png │ │ │ │ ├── sharemore_friendcard@3x.png │ │ │ │ ├── sharemore_location@2x.png │ │ │ │ ├── sharemore_location@3x.png │ │ │ │ ├── sharemore_myfav@2x.png │ │ │ │ ├── sharemore_myfav@3x.png │ │ │ │ ├── sharemore_pic@2x.png │ │ │ │ ├── sharemore_pic@3x.png │ │ │ │ ├── sharemore_redbag@2x.png │ │ │ │ ├── sharemore_redbag@3x.png │ │ │ │ ├── sharemore_sight@2x.png │ │ │ │ ├── sharemore_sight@3x.png │ │ │ │ ├── sharemore_video@2x.png │ │ │ │ ├── sharemore_video@3x.png │ │ │ │ ├── sharemore_videovoip@2x.png │ │ │ │ ├── sharemore_videovoip@3x.png │ │ │ │ ├── sharemore_voiceinput@2x.png │ │ │ │ ├── sharemore_voiceinput@3x.png │ │ │ │ ├── sharemore_wallet@2x.png │ │ │ │ ├── sharemore_wallet@3x.png │ │ │ │ ├── sharemore_wxtalk@2x.png │ │ │ │ └── sharemore_wxtalk@3x.png │ │ │ ├── Plugins_BG@2x.png │ │ │ ├── Plugins_BG@3x.png │ │ │ ├── Plugins_BG_HL@2x.png │ │ │ └── Plugins_BG_HL@3x.png │ │ ├── VoicePlay │ │ │ ├── ReceiverVoiceNodePlaying001@2x.png │ │ │ ├── ReceiverVoiceNodePlaying001@3x.png │ │ │ ├── ReceiverVoiceNodePlaying002@2x.png │ │ │ ├── ReceiverVoiceNodePlaying002@3x.png │ │ │ ├── ReceiverVoiceNodePlaying003@2x.png │ │ │ ├── ReceiverVoiceNodePlaying003@3x.png │ │ │ ├── ReceiverVoiceNodePlaying@2x.png │ │ │ ├── ReceiverVoiceNodePlaying@3x.png │ │ │ ├── SenderVoiceNodePlaying001@2x.png │ │ │ ├── SenderVoiceNodePlaying001@3x.png │ │ │ ├── SenderVoiceNodePlaying002@2x.png │ │ │ ├── SenderVoiceNodePlaying002@3x.png │ │ │ ├── SenderVoiceNodePlaying003@2x.png │ │ │ ├── SenderVoiceNodePlaying003@3x.png │ │ │ ├── SenderVoiceNodePlaying@2x.png │ │ │ └── SenderVoiceNodePlaying@3x.png │ │ └── VoiceRecord │ │ │ ├── RecordCancel@2x.png │ │ │ ├── RecordCancel@3x.png │ │ │ ├── RecordingBkg@2x.png │ │ │ ├── RecordingBkg@3x.png │ │ │ ├── RecordingSignal001@2x.png │ │ │ ├── RecordingSignal001@3x.png │ │ │ ├── RecordingSignal002@2x.png │ │ │ ├── RecordingSignal002@3x.png │ │ │ ├── RecordingSignal003@2x.png │ │ │ ├── RecordingSignal003@3x.png │ │ │ ├── RecordingSignal004@2x.png │ │ │ ├── RecordingSignal004@3x.png │ │ │ ├── RecordingSignal005@2x.png │ │ │ ├── RecordingSignal005@3x.png │ │ │ ├── RecordingSignal006@2x.png │ │ │ ├── RecordingSignal006@3x.png │ │ │ ├── RecordingSignal007@2x.png │ │ │ ├── RecordingSignal007@3x.png │ │ │ ├── RecordingSignal008@2x.png │ │ │ └── RecordingSignal008@3x.png │ └── UI │ │ ├── Controller │ │ ├── DFConversationViewController.h │ │ ├── DFConversationViewController.m │ │ ├── DFMessageViewController.h │ │ └── DFMessageViewController.m │ │ ├── Emotions │ │ ├── DFBaseEmotion.h │ │ ├── DFBaseEmotion.m │ │ ├── DFEmojiEmotion │ │ │ ├── DFEmojiEmotion.h │ │ │ └── DFEmojiEmotion.m │ │ ├── DFEmotionsManager.h │ │ ├── DFEmotionsManager.m │ │ └── DFPackageEmotion │ │ │ ├── DFPackageEmotion.h │ │ │ ├── DFPackageEmotion.m │ │ │ ├── DFPackageEmotionItem.h │ │ │ └── DFPackageEmotionItem.m │ │ ├── Plugins │ │ ├── DFBasePlugin.h │ │ ├── DFBasePlugin.m │ │ ├── DFPluginPresentController.h │ │ ├── DFPluginPresentController.m │ │ ├── DFPluginsManager.h │ │ ├── DFPluginsManager.m │ │ ├── Favourite │ │ │ ├── DFFavouriteChooseController.h │ │ │ ├── DFFavouriteChooseController.m │ │ │ ├── DFFavouritePlugin.h │ │ │ └── DFFavouritePlugin.m │ │ ├── NameCard │ │ │ ├── DFNameCardChooseController.h │ │ │ ├── DFNameCardChooseController.m │ │ │ ├── DFNameCardPlugin.h │ │ │ └── DFNameCardPlugin.m │ │ ├── PhotoAlbum │ │ │ ├── DFPhotoAlbumPlugin.h │ │ │ └── DFPhotoAlbumPlugin.m │ │ ├── PhotoCamera │ │ │ ├── DFPhotoCameraPlugin.h │ │ │ └── DFPhotoCameraPlugin.m │ │ ├── RedBag │ │ │ ├── DFRedBagCreateController.h │ │ │ ├── DFRedBagCreateController.m │ │ │ ├── DFRedBagPlugin.h │ │ │ └── DFRedBagPlugin.m │ │ └── ShortVideo │ │ │ ├── DFShortVideoPlugin.h │ │ │ └── DFShortVideoPlugin.m │ │ └── View │ │ ├── BarStatus │ │ ├── DFBarStatusView.h │ │ └── DFBarStatusView.m │ │ ├── BubbleView │ │ ├── DFBaseBubbleView.h │ │ ├── DFBaseBubbleView.m │ │ ├── DFMoneyBubbleView.h │ │ ├── DFMoneyBubbleView.m │ │ ├── DFShareBubbleView.h │ │ ├── DFShareBubbleView.m │ │ ├── DFTextBubbleView.h │ │ ├── DFTextBubbleView.m │ │ ├── DFVoiceBubbleView.h │ │ └── DFVoiceBubbleView.m │ │ ├── ConversationCell │ │ ├── DFConversationCell.h │ │ └── DFConversationCell.m │ │ ├── EmotionsView │ │ ├── DFEmotionsView.h │ │ └── DFEmotionsView.m │ │ ├── InputToolbarView │ │ ├── DFInputToolbarView.h │ │ └── DFInputToolbarView.m │ │ ├── MessageCell │ │ ├── DFBaseMessageCell.h │ │ ├── DFBaseMessageCell.m │ │ ├── DFEmotionMessageCell.h │ │ ├── DFEmotionMessageCell.m │ │ ├── DFImageMessageCell.h │ │ ├── DFImageMessageCell.m │ │ ├── DFInfoNotifyMessageCell.h │ │ ├── DFInfoNotifyMessageCell.m │ │ ├── DFLocationMessageCell.h │ │ ├── DFLocationMessageCell.m │ │ ├── DFMessageCell.h │ │ ├── DFMessageCell.m │ │ ├── DFMessageCellManager.h │ │ ├── DFMessageCellManager.m │ │ ├── DFNameCardMessageCell.h │ │ ├── DFNameCardMessageCell.m │ │ ├── DFRedBagMessageCell.h │ │ ├── DFRedBagMessageCell.m │ │ ├── DFShareMessageCell.h │ │ ├── DFShareMessageCell.m │ │ ├── DFShortVideoMessageCell.h │ │ ├── DFShortVideoMessageCell.m │ │ ├── DFTextMessageCell.h │ │ ├── DFTextMessageCell.m │ │ ├── DFVoiceMessageCell.h │ │ └── DFVoiceMessageCell.m │ │ ├── MessageDetail │ │ ├── DFWebViewController.h │ │ └── DFWebViewController.m │ │ ├── MessageStatusView │ │ ├── DFMessageStatusView.h │ │ └── DFMessageStatusView.m │ │ ├── MessageTableView │ │ ├── DFMessageTableView.h │ │ └── DFMessageTableView.m │ │ ├── PluginsView │ │ ├── DFPluginsView.h │ │ └── DFPluginsView.m │ │ ├── RecorderHUD │ │ ├── DFRecorderHUD.h │ │ └── DFRecorderHUD.m │ │ └── VoicePlayView │ │ ├── DFVoicePlayManager.h │ │ ├── DFVoicePlayManager.m │ │ ├── DFVoicePlayView.h │ │ └── DFVoicePlayView.m ├── ViewController.h ├── ViewController.m ├── main.m └── prefix.pch ├── Podfile ├── Podfile.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.xcworkspace 3 | xcuserdata/ 4 | 5 | Pods/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /MongoIM.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM.podspec -------------------------------------------------------------------------------- /MongoIM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MongoIM/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/AppDelegate.h -------------------------------------------------------------------------------- /MongoIM/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/AppDelegate.m -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/Contents.json -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-1242x2208@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-1242x2208@3x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-1536x2008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-1536x2008@2x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-1536x2048@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-1536x2048@2x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-320x480@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-320x480@1x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-640x1136@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-640x1136@2x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-640x960@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-640x960@2x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-750x1334@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-750x1334@2x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-768x1004@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-768x1004@1x.png -------------------------------------------------------------------------------- /MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-768x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Assets.xcassets/Brand Assets.launchimage/LaunchImage-768x1024@1x.png -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationChooseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationChooseController.h -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationChooseController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationChooseController.m -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationInfo.h -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationInfo.m -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationPlugin.h -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationPlugin.m -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationViewController.h -------------------------------------------------------------------------------- /MongoIM/Extend/Plugin/Location/DFLocationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Plugin/Location/DFLocationViewController.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MessageHandler/DFRongCloudMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MessageHandler/DFRongCloudMessageHandler.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MessageHandler/DFRongCloudMessageHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MessageHandler/DFRongCloudMessageHandler.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCEmotionMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCEmotionMessage.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCEmotionMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCEmotionMessage.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCNameCardMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCNameCardMessage.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCNameCardMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCNameCardMessage.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCRedBagMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCRedBagMessage.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCRedBagMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCRedBagMessage.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCShareMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCShareMessage.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCShareMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCShareMessage.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCShortVideoMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCShortVideoMessage.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/Model/RCShortVideoMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/Model/RCShortVideoMessage.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudEmotionMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudEmotionMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudEmotionMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudEmotionMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudImageMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudImageMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudImageMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudImageMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudLocationMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudLocationMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudLocationMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudLocationMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapterManager.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapterManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudMessageContentAdapterManager.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudNameCardMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudNameCardMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudNameCardMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudNameCardMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudRedBagMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudRedBagMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudRedBagMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudRedBagMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShareMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShareMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShareMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShareMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShortVideoMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShortVideoMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShortVideoMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudShortVideoMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudTextMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudTextMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudTextMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudTextMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudVoiceMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudVoiceMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudVoiceMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/MongoToRongCloudAdapter/MongoToRongCloudVoiceMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoEmotionMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoEmotionMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoEmotionMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoEmotionMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoImageMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoImageMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoImageMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoImageMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoInfomationNotificationMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoInfomationNotificationMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoInfomationNotificationMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoInfomationNotificationMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoLocationMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoLocationMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoLocationMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoLocationMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapterManager.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapterManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoMessageContentAdapterManager.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoNameCardMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoNameCardMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoNameCardMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoNameCardMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoRedBagMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoRedBagMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoRedBagMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoRedBagMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShareMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShareMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShareMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShareMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShortVideoMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShortVideoMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShortVideoMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoShortVideoMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoTextMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoTextMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoTextMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoTextMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoVoiceMessageContentAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoVoiceMessageContentAdapter.h -------------------------------------------------------------------------------- /MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoVoiceMessageContentAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Extend/Vendor/RongCloud/RongCloudToMongoAdapter/RongCloudToMongoVoiceMessageContentAdapter.m -------------------------------------------------------------------------------- /MongoIM/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/Info.plist -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/DFMessageContentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/DFMessageContentManager.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/DFMessageContentManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/DFMessageContentManager.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFEmotionMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFEmotionMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFEmotionMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFEmotionMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFImageMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFImageMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFImageMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFImageMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFLocationMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFLocationMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFLocationMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFLocationMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFMediaMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFMediaMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFMediaMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFMediaMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFNameCardMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFNameCardMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFNameCardMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFNameCardMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFRedBagMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFRedBagMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFRedBagMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFRedBagMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFShareMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFShareMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFShareMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFShareMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFShortVideoMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFShortVideoMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFShortVideoMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFShortVideoMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFTextMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFTextMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFTextMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFTextMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFVoiceMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFVoiceMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Media/DFVoiceMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Media/DFVoiceMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Notify/DFInfoNotifyMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Notify/DFInfoNotifyMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Notify/DFInfoNotifyMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Notify/DFInfoNotifyMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Notify/DFNotifyMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Notify/DFNotifyMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/Content/Notify/DFNotifyMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/Content/Notify/DFNotifyMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFConversation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFConversation.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFConversation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFConversation.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFMessage.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFMessage.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFMessageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFMessageContent.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFMessageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFMessageContent.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFUserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFUserInfo.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Model/DFUserInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Model/DFUserInfo.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/MongoIMClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/MongoIMClient.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/MongoIMClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/MongoIMClient.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Storage/DFCommonStorageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Storage/DFCommonStorageService.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Storage/DFCommonStorageService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Storage/DFCommonStorageService.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Storage/DFMessageStorageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Storage/DFMessageStorageService.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Core/Storage/DFMessageStorageService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Core/Storage/DFMessageStorageService.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Lib/DFShapedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Lib/DFShapedImageView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Lib/DFShapedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Lib/DFShapedImageView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Lib/LCVoiceHud/LCVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Lib/LCVoiceHud/LCVoice.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Lib/LCVoiceHud/LCVoice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Lib/LCVoiceHud/LCVoice.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Macro/ConnectionStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Macro/ConnectionStatus.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Macro/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Macro/Key.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/Macro/MessageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Macro/MessageContentType.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/MessageHandler/DFBaseMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/MessageHandler/DFBaseMessageHandler.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/MessageHandler/DFBaseMessageHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/MessageHandler/DFBaseMessageHandler.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/MessageHandler/DFMongoMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/MessageHandler/DFMongoMessageHandler.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/MessageHandler/DFMongoMessageHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/MessageHandler/DFMongoMessageHandler.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/MongoIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/MongoIM.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/MongoIM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/MongoIM.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverAppNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverAppNodeBkg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverAppNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverAppNodeBkg@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverImageNodeBorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverImageNodeBorder@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverImageNodeBorder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverImageNodeBorder@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverImageNodeMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverImageNodeMask@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkg@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverVoiceNodeBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverVoiceNodeBack@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/ReceiverVoiceNodeBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/ReceiverVoiceNodeBack@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderAppCardNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderAppCardNodeBkg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderAppCardNodeBkg_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderAppCardNodeBkg_HL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg_HL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderAppNodeBkg_HL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderImageNodeBorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderImageNodeBorder@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderImageNodeBorder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderImageNodeBorder@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderImageNodeMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderImageNodeMask@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkg1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkg1@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkg@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderVoiceNodeBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderVoiceNodeBack@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/SenderVoiceNodeBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/SenderVoiceNodeBack@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG_HL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cReceiverMsgNodeBG_HL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG_HL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Bubble/c2cSenderMsgNodeBG_HL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/DeleteEmoticonBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/DeleteEmoticonBtn@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionAdd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionAdd@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsBagAdd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsBagAdd@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsBagTabBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsBagTabBg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsBagTabBgFocus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsBagTabBgFocus@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsEmojiHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsEmojiHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsSendBtnBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsSendBtnBlue@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsSendBtnBlueHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsSendBtnBlueHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsSendBtnGrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsSendBtnGrey@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Emotions/EmotionsSetting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Emotions/EmotionsSetting@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotion@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotion@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotionHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotionHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotionHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewEmotionHL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoice@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoice@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoice@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoiceHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoiceHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoiceHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewInputVoiceHL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboard@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboard@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboardHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboardHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewKeyboardHL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewPlugin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewPlugin@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewPlugin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewPlugin@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewPluginHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewPluginHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/ToolViewPluginHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/ToolViewPluginHL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_Black@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_Black@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_BlackHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_BlackHL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_BlackHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/InputToolbar/VoiceBtn_BlackHL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/DefaultHead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/DefaultHead@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/MessageSendFail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/MessageSendFail@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/MessageSendFail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/MessageSendFail@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/RedBag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/RedBag@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/barbuttonicon_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/barbuttonicon_add@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/barbuttonicon_add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/barbuttonicon_add@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/fileicon_link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/fileicon_link@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/fileicon_loc90@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/fileicon_loc90@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/fileicon_loc90@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/fileicon_loc90@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/image_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/image_bg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/located_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/located_pin@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/located_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/located_pin@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/location_my@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/location_my@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/location_my@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/location_my@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/location_my_current@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/location_my_current@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Other/location_my_current@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Other/location_my_current@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemorePay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemorePay@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemorePay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemorePay@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_friendcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_friendcard@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_friendcard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_friendcard@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_location@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_location@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_myfav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_myfav@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_myfav@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_myfav@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_pic@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_pic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_pic@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_redbag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_redbag@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_redbag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_redbag@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_sight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_sight@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_sight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_sight@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_video@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_video@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_videovoip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_videovoip@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_videovoip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_videovoip@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_voiceinput@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_voiceinput@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_voiceinput@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_voiceinput@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wallet@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wallet@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wxtalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wxtalk@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wxtalk@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Defaults/sharemore_wxtalk@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Plugins_BG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Plugins_BG@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Plugins_BG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Plugins_BG@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Plugins_BG_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Plugins_BG_HL@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/Plugins/Plugins_BG_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/Plugins/Plugins_BG_HL@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying001@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying001@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying001@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying002@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying002@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying002@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying003@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying003@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying003@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/ReceiverVoiceNodePlaying@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying001@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying001@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying001@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying002@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying002@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying002@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying003@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying003@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying003@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoicePlay/SenderVoiceNodePlaying@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordCancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordCancel@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordCancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordCancel@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingBkg@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingBkg@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal001@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal001@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal001@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal002@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal002@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal002@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal003@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal003@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal003@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal004@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal004@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal004@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal005@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal005@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal005@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal006@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal006@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal006@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal007@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal007@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal007@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal008@2x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal008@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/Resource/VoiceRecord/RecordingSignal008@3x.png -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Controller/DFConversationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Controller/DFConversationViewController.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Controller/DFConversationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Controller/DFConversationViewController.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Controller/DFMessageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Controller/DFMessageViewController.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Controller/DFMessageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Controller/DFMessageViewController.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFBaseEmotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFBaseEmotion.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFBaseEmotion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFBaseEmotion.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFEmojiEmotion/DFEmojiEmotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFEmojiEmotion/DFEmojiEmotion.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFEmojiEmotion/DFEmojiEmotion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFEmojiEmotion/DFEmojiEmotion.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFEmotionsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFEmotionsManager.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFEmotionsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFEmotionsManager.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotion.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotion.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotionItem.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Emotions/DFPackageEmotion/DFPackageEmotionItem.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/DFBasePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/DFBasePlugin.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/DFBasePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/DFBasePlugin.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/DFPluginPresentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/DFPluginPresentController.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/DFPluginPresentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/DFPluginPresentController.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/DFPluginsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/DFPluginsManager.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/DFPluginsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/DFPluginsManager.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouriteChooseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouriteChooseController.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouriteChooseController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouriteChooseController.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouritePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouritePlugin.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouritePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/Favourite/DFFavouritePlugin.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardChooseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardChooseController.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardChooseController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardChooseController.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardPlugin.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/NameCard/DFNameCardPlugin.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/PhotoAlbum/DFPhotoAlbumPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/PhotoAlbum/DFPhotoAlbumPlugin.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/PhotoAlbum/DFPhotoAlbumPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/PhotoAlbum/DFPhotoAlbumPlugin.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/PhotoCamera/DFPhotoCameraPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/PhotoCamera/DFPhotoCameraPlugin.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/PhotoCamera/DFPhotoCameraPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/PhotoCamera/DFPhotoCameraPlugin.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagCreateController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagCreateController.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagCreateController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagCreateController.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagPlugin.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/RedBag/DFRedBagPlugin.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/ShortVideo/DFShortVideoPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/ShortVideo/DFShortVideoPlugin.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/Plugins/ShortVideo/DFShortVideoPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/Plugins/ShortVideo/DFShortVideoPlugin.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BarStatus/DFBarStatusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BarStatus/DFBarStatusView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BarStatus/DFBarStatusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BarStatus/DFBarStatusView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFBaseBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFBaseBubbleView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFBaseBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFBaseBubbleView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFMoneyBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFMoneyBubbleView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFMoneyBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFMoneyBubbleView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFShareBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFShareBubbleView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFShareBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFShareBubbleView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFTextBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFTextBubbleView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFTextBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFTextBubbleView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFVoiceBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFVoiceBubbleView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/BubbleView/DFVoiceBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/BubbleView/DFVoiceBubbleView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/ConversationCell/DFConversationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/ConversationCell/DFConversationCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/ConversationCell/DFConversationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/ConversationCell/DFConversationCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/EmotionsView/DFEmotionsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/EmotionsView/DFEmotionsView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/EmotionsView/DFEmotionsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/EmotionsView/DFEmotionsView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/InputToolbarView/DFInputToolbarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/InputToolbarView/DFInputToolbarView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/InputToolbarView/DFInputToolbarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/InputToolbarView/DFInputToolbarView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFBaseMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFBaseMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFBaseMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFBaseMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFEmotionMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFEmotionMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFEmotionMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFEmotionMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFImageMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFImageMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFImageMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFImageMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFInfoNotifyMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFInfoNotifyMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFInfoNotifyMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFInfoNotifyMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFLocationMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFLocationMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFLocationMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFLocationMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFMessageCellManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFMessageCellManager.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFMessageCellManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFMessageCellManager.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFNameCardMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFNameCardMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFNameCardMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFNameCardMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFRedBagMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFRedBagMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFRedBagMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFRedBagMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFShareMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFShareMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFShareMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFShareMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFShortVideoMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFShortVideoMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFShortVideoMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFShortVideoMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFTextMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFTextMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFTextMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFTextMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFVoiceMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFVoiceMessageCell.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageCell/DFVoiceMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageCell/DFVoiceMessageCell.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageDetail/DFWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageDetail/DFWebViewController.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageDetail/DFWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageDetail/DFWebViewController.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageStatusView/DFMessageStatusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageStatusView/DFMessageStatusView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageStatusView/DFMessageStatusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageStatusView/DFMessageStatusView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageTableView/DFMessageTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageTableView/DFMessageTableView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/MessageTableView/DFMessageTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/MessageTableView/DFMessageTableView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/PluginsView/DFPluginsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/PluginsView/DFPluginsView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/PluginsView/DFPluginsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/PluginsView/DFPluginsView.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/RecorderHUD/DFRecorderHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/RecorderHUD/DFRecorderHUD.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/RecorderHUD/DFRecorderHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/RecorderHUD/DFRecorderHUD.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayManager.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayManager.m -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayView.h -------------------------------------------------------------------------------- /MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/MongoIM/UI/View/VoicePlayView/DFVoicePlayView.m -------------------------------------------------------------------------------- /MongoIM/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/ViewController.h -------------------------------------------------------------------------------- /MongoIM/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/ViewController.m -------------------------------------------------------------------------------- /MongoIM/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/main.m -------------------------------------------------------------------------------- /MongoIM/prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/MongoIM/prefix.pch -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyunzhong/MongoIM-iOS/HEAD/README.md --------------------------------------------------------------------------------