├── .DS_Store ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CONTRIBUTING.md ├── CometChatObjc ├── CometChat KitchenSinkUITests │ ├── CometChatUITests.swift │ ├── ConversationListTests.swift │ ├── CreateUserTests.swift │ ├── Info.plist │ └── LoginTests.swift ├── CometChatObjc.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── CometChat KitchenSinkUITests.xcscheme │ │ └── CometChatObjc.xcscheme ├── CometChatObjc │ ├── App │ │ ├── AppConstants.h │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Cells │ │ │ ├── LogoutCell.h │ │ │ └── LogoutCell.m │ │ ├── CreateUser.h │ │ ├── CreateUser.m │ │ ├── LoginWithDemoUsers.h │ │ ├── LoginWithDemoUsers.m │ │ ├── LoginWithUID.h │ │ ├── LoginWithUID.m │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── OtherViewControllers │ │ │ ├── Cells │ │ │ │ ├── ComponentCell.h │ │ │ │ ├── ComponentCell.m │ │ │ │ ├── ComponentCell.xib │ │ │ │ ├── LogoutCell.h │ │ │ │ ├── LogoutCell.m │ │ │ │ ├── LogoutCell.xib │ │ │ │ ├── UICallingCell.h │ │ │ │ ├── UICallingCell.m │ │ │ │ ├── UICallingCell.xib │ │ │ │ ├── UIScreensCell.h │ │ │ │ ├── UIScreensCell.m │ │ │ │ ├── UIScreensCell.xib │ │ │ │ ├── UnifiedCell.h │ │ │ │ ├── UnifiedCell.m │ │ │ │ └── UnifiedCell.xib │ │ │ ├── ComponentModificationsController.swift │ │ │ ├── UIComponentController.swift │ │ │ ├── UIComponentsCell.swift │ │ │ └── UIComponentsCell.xib │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── ViewController.h │ │ └── ViewController.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ ├── iTunesArtwork@1x.png │ │ │ ├── iTunesArtwork@2x.png │ │ │ └── iTunesArtwork@3x.png │ │ ├── BigLogo.imageset │ │ │ ├── BigLogo.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Demo Users │ │ │ ├── Contents.json │ │ │ ├── captainamerica.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── captainamerica.png │ │ │ │ ├── captainamerica@2x.png │ │ │ │ └── captainamerica@3x.png │ │ │ ├── cyclops.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cyclops.png │ │ │ │ ├── cyclops@2x.png │ │ │ │ └── cyclops@3x.png │ │ │ ├── ironman.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ironman.png │ │ │ │ ├── ironman@2x.png │ │ │ │ └── ironman@3x.png │ │ │ ├── spiderman.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── spiderman.png │ │ │ │ ├── spiderman@2x.png │ │ │ │ └── spiderman@3x.png │ │ │ └── wolverine.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── wolverine.png │ │ │ │ ├── wolverine@2x.png │ │ │ │ └── wolverine@3x.png │ │ ├── cometchat_rounded.imageset │ │ │ ├── Contents.json │ │ │ ├── cometchat_rounded.png │ │ │ ├── cometchat_rounded@2x.png │ │ │ ├── cometchat_rounded@3x.png │ │ │ ├── cometchat_rounded_white.png │ │ │ ├── cometchat_rounded_white@2x.png │ │ │ └── cometchat_rounded_white@3x.png │ │ ├── cometchat_white.imageset │ │ │ ├── Contents.json │ │ │ ├── cometchat_white-1.png │ │ │ ├── cometchat_white.png │ │ │ ├── cometchat_white@2x-1.png │ │ │ ├── cometchat_white@2x.png │ │ │ ├── cometchat_white@3x-1.png │ │ │ └── cometchat_white@3x.png │ │ ├── components.imageset │ │ │ ├── Contents.json │ │ │ ├── components.png │ │ │ ├── components@2x.png │ │ │ └── components@3x.png │ │ ├── facetime.imageset │ │ │ ├── Contents.json │ │ │ └── facetime.png │ │ ├── rocket.imageset │ │ │ ├── Contents.json │ │ │ └── project.png │ │ ├── screen.imageset │ │ │ ├── Contents.json │ │ │ └── smartphone.png │ │ └── wall.imageset │ │ │ ├── Contents.json │ │ │ └── wall.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Library │ │ ├── UI Components │ │ │ ├── Calls │ │ │ │ ├── Call Logs │ │ │ │ │ ├── CometChatCallDetail.swift │ │ │ │ │ ├── CometChatCallsList.swift │ │ │ │ │ └── CometChatNewCallList.swift │ │ │ │ ├── Call Manager │ │ │ │ │ └── CometChatCallManager.swift │ │ │ │ ├── CometChatCallDetailsLogItem │ │ │ │ │ ├── CometChatCallDetailsLogItem.swift │ │ │ │ │ └── CometChatCallDetailsLogItem.xib │ │ │ │ ├── CometChatCallListItem │ │ │ │ │ ├── CometChatCallListItem.swift │ │ │ │ │ └── CometChatCallListItem.xib │ │ │ │ ├── CometChatProgressIndicatorItem │ │ │ │ │ ├── CometChatProgressIndicatorItem.swift │ │ │ │ │ └── CometChatProgressIndicatorItem.xib │ │ │ │ ├── Create Meeting │ │ │ │ │ ├── CometChatCreateMeetingView.swift │ │ │ │ │ ├── CometChatCreateMeetingView.xib │ │ │ │ │ ├── CometChatMeetingView.swift │ │ │ │ │ └── CometChatMeetingView.xib │ │ │ │ ├── Incoming Call │ │ │ │ │ ├── CometChatIncomingCall.swift │ │ │ │ │ └── CometChatIncomingCall.xib │ │ │ │ ├── Outgoing Call │ │ │ │ │ ├── CometChatOutgoingCall.swift │ │ │ │ │ └── CometChatOutgoingCall.xib │ │ │ │ └── Resources │ │ │ │ │ ├── calls-audio-call@2x.png │ │ │ │ │ ├── calls-audio-call@3x.png │ │ │ │ │ ├── calls-audio-call@4x.png │ │ │ │ │ ├── calls-back.png │ │ │ │ │ ├── calls-back@2x.png │ │ │ │ │ ├── calls-back@3x.png │ │ │ │ │ ├── calls-delete.png │ │ │ │ │ ├── calls-delete@2x.png │ │ │ │ │ ├── calls-delete@3x.png │ │ │ │ │ ├── calls-info.png │ │ │ │ │ ├── calls-info@2x.png │ │ │ │ │ ├── calls-info@3x.png │ │ │ │ │ ├── calls-info@4x.png │ │ │ │ │ ├── end-call.png │ │ │ │ │ ├── end-call@2x.png │ │ │ │ │ ├── end-call@3x.png │ │ │ │ │ ├── end-call@4x.png │ │ │ │ │ ├── incoming-audio-call.png │ │ │ │ │ ├── incoming-audio-call@2x.png │ │ │ │ │ ├── incoming-audio-call@3x.png │ │ │ │ │ ├── incoming-audio-call@4x.png │ │ │ │ │ ├── incoming-video-call.png │ │ │ │ │ ├── incoming-video-call@2x.png │ │ │ │ │ ├── incoming-video-call@3x.png │ │ │ │ │ ├── incoming-video-call@4x.png │ │ │ │ │ ├── new-call.png │ │ │ │ │ ├── new-call@2x.png │ │ │ │ │ ├── new-call@3x.png │ │ │ │ │ ├── new-call@4x.png │ │ │ │ │ ├── outgoing-audio-call.png │ │ │ │ │ ├── outgoing-audio-call@2x.png │ │ │ │ │ ├── outgoing-audio-call@3x.png │ │ │ │ │ ├── outgoing-audio-call@4x.png │ │ │ │ │ ├── outgoing-video-call.png │ │ │ │ │ ├── outgoing-video-call@2x.png │ │ │ │ │ ├── outgoing-video-call@3x.png │ │ │ │ │ ├── outgoing-video-call@4x.png │ │ │ │ │ ├── video-call.png │ │ │ │ │ ├── video-call@2x.png │ │ │ │ │ ├── video-call@3x.png │ │ │ │ │ └── video-call@4x.png │ │ │ ├── Chats │ │ │ │ ├── Conversation List Item │ │ │ │ │ ├── CometChatConversationListItem.swift │ │ │ │ │ └── CometChatConversationListItem.xib │ │ │ │ ├── Conversation List │ │ │ │ │ └── CometChatConversationList.swift │ │ │ │ ├── Resources │ │ │ │ │ ├── chats-back.png │ │ │ │ │ ├── chats-back@2x.png │ │ │ │ │ ├── chats-back@3x.png │ │ │ │ │ ├── chats-create.png │ │ │ │ │ ├── chats-create@2x.png │ │ │ │ │ ├── chats-create@3x.png │ │ │ │ │ ├── chats-delete.png │ │ │ │ │ ├── chats-delete@2x.png │ │ │ │ │ ├── chats-delete@3x.png │ │ │ │ │ ├── chats-message-delivered.png │ │ │ │ │ ├── chats-message-delivered@2x.png │ │ │ │ │ ├── chats-message-delivered@3x.png │ │ │ │ │ ├── chats-message-delivered@4x.png │ │ │ │ │ ├── chats-message-read.png │ │ │ │ │ ├── chats-message-read@2x.png │ │ │ │ │ ├── chats-message-read@3x.png │ │ │ │ │ ├── chats-message-read@4x.png │ │ │ │ │ ├── chats-message-sent.png │ │ │ │ │ ├── chats-message-sent@2x.png │ │ │ │ │ ├── chats-message-sent@3x.png │ │ │ │ │ └── chats-message-sent@4x.png │ │ │ │ └── Start Conversation │ │ │ │ │ └── CometChatStartConversation.swift │ │ │ ├── CometChat UI │ │ │ │ ├── CometChatUI.swift │ │ │ │ └── Resources │ │ │ │ │ ├── cometchatui-back.png │ │ │ │ │ ├── cometchatui-back@2x.png │ │ │ │ │ ├── cometchatui-back@3x.png │ │ │ │ │ ├── cometchatui-calls.png │ │ │ │ │ ├── cometchatui-calls@2x.png │ │ │ │ │ ├── cometchatui-calls@3x.png │ │ │ │ │ ├── cometchatui-chats.png │ │ │ │ │ ├── cometchatui-chats@2x.png │ │ │ │ │ ├── cometchatui-chats@3x.png │ │ │ │ │ ├── cometchatui-groups.png │ │ │ │ │ ├── cometchatui-groups@2x.png │ │ │ │ │ ├── cometchatui-groups@3x.png │ │ │ │ │ ├── cometchatui-more.png │ │ │ │ │ ├── cometchatui-more@2x.png │ │ │ │ │ ├── cometchatui-more@3x.png │ │ │ │ │ ├── cometchatui-users.png │ │ │ │ │ ├── cometchatui-users@2x.png │ │ │ │ │ └── cometchatui-users@3x.png │ │ │ ├── Groups │ │ │ │ ├── Add Administrators │ │ │ │ │ └── CometChatAddAdministrators.swift │ │ │ │ ├── Add Member Item │ │ │ │ │ ├── CometChatAddMemberItem.swift │ │ │ │ │ └── CometChatAddMemberItem.xib │ │ │ │ ├── Add Members │ │ │ │ │ └── CometChatAddMembers.swift │ │ │ │ ├── Add Moderators │ │ │ │ │ └── CometChatAddModerators.swift │ │ │ │ ├── Administrators Item │ │ │ │ │ ├── CometChatAdministratorsItem.swift │ │ │ │ │ └── CometChatAdministratorsItem.xib │ │ │ │ ├── Banned Members │ │ │ │ │ └── CometChatBannedMembers.swift │ │ │ │ ├── Create Group │ │ │ │ │ ├── CometChatCreateGroup.swift │ │ │ │ │ └── CometChatCreateGroup.xib │ │ │ │ ├── Group Detail │ │ │ │ │ └── CometChatGroupDetail.swift │ │ │ │ ├── Group List Item │ │ │ │ │ ├── CometChatGroupListItem.swift │ │ │ │ │ └── CometChatGroupListItem.xib │ │ │ │ ├── Group List │ │ │ │ │ └── CometChatGroupList.swift │ │ │ │ ├── Members Item │ │ │ │ │ ├── CometChatMembersItem.swift │ │ │ │ │ └── CometChatMembersItem.xib │ │ │ │ ├── Resources │ │ │ │ │ ├── ban-member.png │ │ │ │ │ ├── ban-member@2x.png │ │ │ │ │ ├── ban-member@3x.png │ │ │ │ │ ├── ban-member@4x.png │ │ │ │ │ ├── groups-create.png │ │ │ │ │ ├── groups-create@2x.png │ │ │ │ │ ├── groups-create@3x.png │ │ │ │ │ ├── groups-delete.png │ │ │ │ │ ├── groups-delete@2x.png │ │ │ │ │ ├── groups-delete@3x.png │ │ │ │ │ ├── password-protected-group.png │ │ │ │ │ ├── password-protected-group@2x.png │ │ │ │ │ ├── password-protected-group@3x.png │ │ │ │ │ ├── password-protected-group@4x.png │ │ │ │ │ ├── private-group.png │ │ │ │ │ ├── private-group@1.5x.png │ │ │ │ │ ├── private-group@2x.png │ │ │ │ │ ├── private-group@3x.png │ │ │ │ │ └── private-group@4x.png │ │ │ │ └── Transfer Ownership │ │ │ │ │ └── CometChatTransferOwnership.swift │ │ │ ├── Messages │ │ │ │ ├── Extensions │ │ │ │ │ ├── CometChatExtension.swift │ │ │ │ │ ├── Message Reactions │ │ │ │ │ │ ├── AddReactionsCell.swift │ │ │ │ │ │ ├── AddReactionsCell.xib │ │ │ │ │ │ ├── CometChatMessageReaction.swift │ │ │ │ │ │ ├── CometChatMessageReactions.swift │ │ │ │ │ │ ├── CometChatMessageReactor.swift │ │ │ │ │ │ ├── CometChatMessageReactors.swift │ │ │ │ │ │ ├── ReactionCell.swift │ │ │ │ │ │ ├── ReactionCell.xib │ │ │ │ │ │ ├── ReactionCountCell.swift │ │ │ │ │ │ ├── ReactionCountCell.xib │ │ │ │ │ │ └── ReactorsView.xib │ │ │ │ │ ├── Polls │ │ │ │ │ │ ├── CometChatCreatePoll.swift │ │ │ │ │ │ ├── CometChatCreatePoll.xib │ │ │ │ │ │ ├── Create Poll Add New Option │ │ │ │ │ │ │ ├── CometChatCreatePollAddNewOption.swift │ │ │ │ │ │ │ └── CometChatCreatePollAddNewOption.xib │ │ │ │ │ │ ├── Create Poll Options │ │ │ │ │ │ │ ├── CometChatCreatePollOptions.swift │ │ │ │ │ │ │ └── CometChatCreatePollOptions.xib │ │ │ │ │ │ └── Create Poll Questions │ │ │ │ │ │ │ ├── CometChatCreatePollQuestions.swift │ │ │ │ │ │ │ └── CometChatCreatePollQuestions.xib │ │ │ │ │ ├── Smart Replies │ │ │ │ │ │ ├── CometChatSmartRepliesPreview.swift │ │ │ │ │ │ ├── CometChatSmartRepliesPreviewItem.swift │ │ │ │ │ │ └── CometChatSmartRepliesPreviewItem.xib │ │ │ │ │ └── Sticker Keyboard │ │ │ │ │ │ ├── CometChatSticker.swift │ │ │ │ │ │ ├── CometChatStickerKeyboard.swift │ │ │ │ │ │ ├── CometChatStickerKeyboard.xib │ │ │ │ │ │ ├── CometChatStickerKeyboardItem.swift │ │ │ │ │ │ ├── CometChatStickerKeyboardItem.xib │ │ │ │ │ │ └── CometChatStickerSet.swift │ │ │ │ ├── Forward Message │ │ │ │ │ └── CometChatForwardMessageList.swift │ │ │ │ ├── Message Action Sheet │ │ │ │ │ ├── ActionsCell.swift │ │ │ │ │ ├── ActionsCell.xib │ │ │ │ │ ├── DimmedView.swift │ │ │ │ │ ├── MessageActions.swift │ │ │ │ │ ├── PanContainerView.swift │ │ │ │ │ ├── PanModal.h │ │ │ │ │ ├── PanModalAnimator.swift │ │ │ │ │ ├── PanModalHeight.swift │ │ │ │ │ ├── PanModalPresentable+Defaults.swift │ │ │ │ │ ├── PanModalPresentable+LayoutHelpers.swift │ │ │ │ │ ├── PanModalPresentable+UIViewController.swift │ │ │ │ │ ├── PanModalPresentable.swift │ │ │ │ │ ├── PanModalPresentationAnimator.swift │ │ │ │ │ ├── PanModalPresentationController.swift │ │ │ │ │ ├── PanModalPresentationDelegate.swift │ │ │ │ │ ├── PanModalPresenter.swift │ │ │ │ │ ├── UIViewController+PanModalPresenter.swift │ │ │ │ │ ├── UserGroupHeaderPresentable.swift │ │ │ │ │ ├── UserGroupHeaderView.swift │ │ │ │ │ └── UserGroupMemberPresentable.swift │ │ │ │ ├── Message Bubbles │ │ │ │ │ ├── Action Message │ │ │ │ │ │ ├── CometChatActionMessageBubble.swift │ │ │ │ │ │ └── CometChatActionMessageBubble.xib │ │ │ │ │ ├── Audio Message │ │ │ │ │ │ ├── CometChatReceiverAudioMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverAudioMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderAudioMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderAudioMessageBubble.xib │ │ │ │ │ ├── Collaborative Whiteboard & Document │ │ │ │ │ │ ├── CometChatReceiverCollaborativeMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverCollaborativeMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderCollaborativeMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderCollaborativeMessageBubble.xib │ │ │ │ │ ├── Date Header │ │ │ │ │ │ └── CometChatMessageDateHeader.swift │ │ │ │ │ ├── File Message │ │ │ │ │ │ ├── CometChatReceiverFileMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverFileMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderFileMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderFileMessageBubble.xib │ │ │ │ │ ├── Group Meeting │ │ │ │ │ │ ├── CometChatReceiverMeetingMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverMeetingMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderMeetingMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderMeetingMessageBubble.xib │ │ │ │ │ ├── Image Message │ │ │ │ │ │ ├── CometChatReceiverImageMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverImageMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderImageMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderImageMessageBubble.xib │ │ │ │ │ ├── Link Preview │ │ │ │ │ │ ├── CometChatReceiverLinkPreviewBubble.swift │ │ │ │ │ │ ├── CometChatReceiverLinkPreviewBubble.xib │ │ │ │ │ │ ├── CometChatSenderLinkPreviewBubble.swift │ │ │ │ │ │ └── CometChatSenderLinkPreviewBubble.xib │ │ │ │ │ ├── Location Message │ │ │ │ │ │ ├── CometChatReceiverLocationMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverLocationMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderLocationMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderLocationMessageBubble.xib │ │ │ │ │ ├── Polls │ │ │ │ │ │ ├── CometChatReceiverPollMessageBubble │ │ │ │ │ │ │ ├── CometChatReceiverPollMessageBubble.swift │ │ │ │ │ │ │ └── CometChatReceiverPollMessageBubble.xib │ │ │ │ │ │ └── CometChatSenderPollMessageBubble │ │ │ │ │ │ │ ├── CometChatSenderPollMessageBubble.swift │ │ │ │ │ │ │ └── CometChatSenderPollMessageBubble.xib │ │ │ │ │ ├── Reply to Message │ │ │ │ │ │ ├── CometChatReceiverReplyMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverReplyMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderReplyMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderReplyMessageBubble.xib │ │ │ │ │ ├── Sticker Message │ │ │ │ │ │ ├── CometChatReceiverStickerMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverStickerMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderStickerMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderStickerMessageBubble.xib │ │ │ │ │ ├── Text Message │ │ │ │ │ │ ├── CometChatReceiverTextMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverTextMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderTextMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderTextMessageBubble.xib │ │ │ │ │ └── Video Message │ │ │ │ │ │ ├── CometChatReceiverVideoMessageBubble.swift │ │ │ │ │ │ ├── CometChatReceiverVideoMessageBubble.xib │ │ │ │ │ │ ├── CometChatSenderVideoMessageBubble.swift │ │ │ │ │ │ └── CometChatSenderVideoMessageBubble.xib │ │ │ │ ├── Message Composer │ │ │ │ │ ├── CometChatMessageComposer.swift │ │ │ │ │ └── CometChatMessageComposer.xib │ │ │ │ ├── Message Information │ │ │ │ │ ├── CometChatMessageInformation.swift │ │ │ │ │ ├── CometChatMessageInformation.xib │ │ │ │ │ ├── CometChatMessageReceiptItem.swift │ │ │ │ │ └── CometChatMessageReceiptItem.xib │ │ │ │ ├── Message List │ │ │ │ │ ├── CometChatMessageList.swift │ │ │ │ │ └── CometChatMessageList.xib │ │ │ │ ├── MessageFilter │ │ │ │ │ └── CometChatMessageFilter.swift │ │ │ │ ├── Resources │ │ │ │ │ ├── add-circle-filled.png │ │ │ │ │ ├── add-circle-filled@2x.png │ │ │ │ │ ├── add-circle-filled@3x.png │ │ │ │ │ ├── copy-paste.png │ │ │ │ │ ├── copy-paste@2x.png │ │ │ │ │ ├── copy-paste@3x.png │ │ │ │ │ ├── copy-paste@4x.png │ │ │ │ │ ├── message-delivered.png │ │ │ │ │ ├── message-delivered@2x.png │ │ │ │ │ ├── message-delivered@3x.png │ │ │ │ │ ├── message-delivered@4x.png │ │ │ │ │ ├── message-read.png │ │ │ │ │ ├── message-read@2x.png │ │ │ │ │ ├── message-read@3x.png │ │ │ │ │ ├── message-read@4x.png │ │ │ │ │ ├── message-sent.png │ │ │ │ │ ├── message-sent@2x.png │ │ │ │ │ ├── message-sent@3x.png │ │ │ │ │ ├── message-sent@4x.png │ │ │ │ │ ├── message-translate.png │ │ │ │ │ ├── message-translate@2x.png │ │ │ │ │ ├── message-translate@3x.png │ │ │ │ │ ├── message-translate@4x.png │ │ │ │ │ ├── messages-attach.png │ │ │ │ │ ├── messages-attach@2x.png │ │ │ │ │ ├── messages-attach@3x.png │ │ │ │ │ ├── messages-attach@4x.png │ │ │ │ │ ├── messages-audio-call.png │ │ │ │ │ ├── messages-audio-call@2x.png │ │ │ │ │ ├── messages-audio-call@3x.png │ │ │ │ │ ├── messages-audio-file.png │ │ │ │ │ ├── messages-audio-file@2x.png │ │ │ │ │ ├── messages-audio-file@3x.png │ │ │ │ │ ├── messages-audio-file@4x.png │ │ │ │ │ ├── messages-back.png │ │ │ │ │ ├── messages-back@2x.png │ │ │ │ │ ├── messages-back@3x.png │ │ │ │ │ ├── messages-camera.png │ │ │ │ │ ├── messages-camera@2x.png │ │ │ │ │ ├── messages-camera@3x.png │ │ │ │ │ ├── messages-camera@4x.png │ │ │ │ │ ├── messages-close-circle.png │ │ │ │ │ ├── messages-close-circle@2x.png │ │ │ │ │ ├── messages-close-circle@3x.png │ │ │ │ │ ├── messages-close-circle@4x.png │ │ │ │ │ ├── messages-collaborative-document.png │ │ │ │ │ ├── messages-collaborative-document@2x.png │ │ │ │ │ ├── messages-collaborative-document@3x.png │ │ │ │ │ ├── messages-collaborative-document@4x.png │ │ │ │ │ ├── messages-collaborative-whiteboard.png │ │ │ │ │ ├── messages-collaborative-whiteboard@2x.png │ │ │ │ │ ├── messages-collaborative-whiteboard@3x.png │ │ │ │ │ ├── messages-collaborative-whiteboard@4x.png │ │ │ │ │ ├── messages-delete.png │ │ │ │ │ ├── messages-delete@2x.png │ │ │ │ │ ├── messages-delete@3x.png │ │ │ │ │ ├── messages-delete@4x.png │ │ │ │ │ ├── messages-edit.png │ │ │ │ │ ├── messages-edit@2x.png │ │ │ │ │ ├── messages-edit@3x.png │ │ │ │ │ ├── messages-edit@4x.png │ │ │ │ │ ├── messages-emoji.png │ │ │ │ │ ├── messages-emoji@2x.png │ │ │ │ │ ├── messages-emoji@3x.png │ │ │ │ │ ├── messages-emoji@4x.png │ │ │ │ │ ├── messages-file-upload.png │ │ │ │ │ ├── messages-file-upload@2x.png │ │ │ │ │ ├── messages-file-upload@3x.png │ │ │ │ │ ├── messages-file-upload@4x.png │ │ │ │ │ ├── messages-forward-message.png │ │ │ │ │ ├── messages-forward-message@2x.png │ │ │ │ │ ├── messages-forward-message@3x.png │ │ │ │ │ ├── messages-forward-message@4x.png │ │ │ │ │ ├── messages-image.png │ │ │ │ │ ├── messages-image@2x.png │ │ │ │ │ ├── messages-image@3x.png │ │ │ │ │ ├── messages-image@4x.png │ │ │ │ │ ├── messages-info.png │ │ │ │ │ ├── messages-info@2x.png │ │ │ │ │ ├── messages-info@3x.png │ │ │ │ │ ├── messages-location.png │ │ │ │ │ ├── messages-location@2x.png │ │ │ │ │ ├── messages-location@3x.png │ │ │ │ │ ├── messages-location@4x.png │ │ │ │ │ ├── messages-polls.png │ │ │ │ │ ├── messages-polls@2x.png │ │ │ │ │ ├── messages-polls@3x.png │ │ │ │ │ ├── messages-polls@4x.png │ │ │ │ │ ├── messages-share.png │ │ │ │ │ ├── messages-share@2x.png │ │ │ │ │ ├── messages-share@3x.png │ │ │ │ │ ├── messages-share@4x.png │ │ │ │ │ ├── messages-stickers.png │ │ │ │ │ ├── messages-stickers@2x.png │ │ │ │ │ ├── messages-stickers@3x.png │ │ │ │ │ ├── messages-stickers@4x.png │ │ │ │ │ ├── messages-video-call.png │ │ │ │ │ ├── messages-video-call@2x.png │ │ │ │ │ ├── messages-video-call@3x.png │ │ │ │ │ ├── messages-wait.png │ │ │ │ │ ├── messages-wait@2x.png │ │ │ │ │ ├── messages-wait@3x.png │ │ │ │ │ ├── messages-wait@4x.png │ │ │ │ │ ├── microphone-circle.png │ │ │ │ │ ├── microphone-circle@2x.png │ │ │ │ │ ├── microphone-circle@3x.png │ │ │ │ │ ├── photo-library.png │ │ │ │ │ ├── photo-library@2x.png │ │ │ │ │ ├── photo-library@3x.png │ │ │ │ │ ├── photo-library@4x.png │ │ │ │ │ ├── reply-message-in-private.png │ │ │ │ │ ├── reply-message-in-private@2x.png │ │ │ │ │ ├── reply-message-in-private@3x.png │ │ │ │ │ ├── reply-message-in-private@4x.png │ │ │ │ │ ├── reply-message.png │ │ │ │ │ ├── reply-message@2x.png │ │ │ │ │ ├── reply-message@3x.png │ │ │ │ │ ├── reply-message@4x.png │ │ │ │ │ ├── send-message-filled.png │ │ │ │ │ ├── send-message-filled@2x.png │ │ │ │ │ ├── send-message-filled@3x.png │ │ │ │ │ ├── send-message-in-private.png │ │ │ │ │ ├── send-message-in-private@2x.png │ │ │ │ │ ├── send-message-in-private@3x.png │ │ │ │ │ ├── send-message-in-private@4x.png │ │ │ │ │ ├── threaded-message.png │ │ │ │ │ ├── threaded-message@2x.png │ │ │ │ │ ├── threaded-message@3x.png │ │ │ │ │ └── threaded-message@4x.png │ │ │ │ └── Threaded Message List │ │ │ │ │ ├── CometChatThreadedMessageList.swift │ │ │ │ │ └── CometChatThreadedMessageList.xib │ │ │ ├── Shared │ │ │ │ ├── CometChatAvatar │ │ │ │ │ └── CometChatAvatar.swift │ │ │ │ ├── CometChatBadgeCount │ │ │ │ │ └── CometChatBadgeCount.swift │ │ │ │ ├── CometChatDetailItem │ │ │ │ │ ├── CometChatDetailItem.swift │ │ │ │ │ └── CometChatDetailItem.xib │ │ │ │ ├── CometChatImageService │ │ │ │ │ ├── ImageServiceHelper │ │ │ │ │ │ └── ImageService.swift │ │ │ │ │ └── URLSessionTaskHelper │ │ │ │ │ │ └── URLSessionTask+Cancellable.swift │ │ │ │ ├── CometChatLiveReaction │ │ │ │ │ └── CometChatLiveReaction.swift │ │ │ │ ├── CometChatSharedMedia │ │ │ │ │ ├── CometChatSharedMedia.swift │ │ │ │ │ ├── CometChatSharedMedia.xib │ │ │ │ │ ├── CometChatSharedMediaItem.swift │ │ │ │ │ └── CometChatSharedMediaItem.xib │ │ │ │ ├── CometChatStatusIndicator │ │ │ │ │ └── CometChatStatusIndicator.swift │ │ │ │ ├── CometChatWebView │ │ │ │ │ ├── CometChatWebView.swift │ │ │ │ │ └── CometChatWebView.xib │ │ │ │ ├── Feature Restriction │ │ │ │ │ ├── Feature + Extension 🔑.swift │ │ │ │ │ └── FeatureRestriction.swift │ │ │ │ ├── Localization │ │ │ │ │ ├── CometChatLanguageBundle.swift │ │ │ │ │ ├── LanguageSelectionView.swift │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── hi.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── lt.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── ms.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── zh-TW.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ └── zh.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ └── SoundManager │ │ │ │ │ └── CometChatSoundManager.swift │ │ │ ├── UserProfile │ │ │ │ ├── Notifications Item │ │ │ │ │ ├── CometChatNotificationsItem.swift │ │ │ │ │ └── CometChatNotificationsItem.xib │ │ │ │ ├── Privacy And Security │ │ │ │ │ └── CometChatPrivacyAndSecurity.swift │ │ │ │ ├── Privacy And Support Item │ │ │ │ │ ├── CometChatPrivacyAndSupportItem.swift │ │ │ │ │ └── CometChatPrivacyAndSupportItem.xib │ │ │ │ ├── Resources │ │ │ │ │ ├── userprofile-back.png │ │ │ │ │ ├── userprofile-back@2x.png │ │ │ │ │ ├── userprofile-back@3x.png │ │ │ │ │ ├── userprofile-edit.png │ │ │ │ │ ├── userprofile-edit@2x.png │ │ │ │ │ ├── userprofile-edit@3x.png │ │ │ │ │ ├── userprofile-privacy.png │ │ │ │ │ ├── userprofile-privacy@2x.png │ │ │ │ │ └── userprofile-privacy@3x.png │ │ │ │ ├── Settings Item │ │ │ │ │ ├── CometChatSettingsItem.swift │ │ │ │ │ └── CometChatSettingsItem.xib │ │ │ │ └── User Profile │ │ │ │ │ └── CometChatUserProfile.swift │ │ │ └── Users │ │ │ │ ├── Blocked Users │ │ │ │ └── CometChatBlockedUsers.swift │ │ │ │ ├── Resources │ │ │ │ ├── users-back.png │ │ │ │ ├── users-back@2x.png │ │ │ │ └── users-back@3x.png │ │ │ │ ├── User Detail │ │ │ │ └── CometChatUserDetail.swift │ │ │ │ ├── User List Item │ │ │ │ ├── CometChatUserListItem.swift │ │ │ │ └── CometChatUserListItem.xib │ │ │ │ └── User List │ │ │ │ └── CometChatUserList.swift │ │ ├── UIKit Resources │ │ │ ├── Helper Extensions │ │ │ │ ├── Activity Indicator │ │ │ │ │ └── CCActivityIndicator.swift │ │ │ │ ├── AudioWaveForm │ │ │ │ │ ├── AudioPlayerManager.swift │ │ │ │ │ ├── AudioRecorderManager.swift │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── AVAudioFileExtensions.swift │ │ │ │ │ │ ├── AudioContext.swift │ │ │ │ │ │ ├── AudioVisualizationView.swift │ │ │ │ │ │ ├── AudioVisualizationView.xib │ │ │ │ │ │ ├── BaseNibView.swift │ │ │ │ │ │ └── Chronometer.swift │ │ │ │ │ └── ViewModel.swift │ │ │ │ ├── Avatar with Letters │ │ │ │ │ └── DPImageView+Letters.swift │ │ │ │ ├── Camera Handler │ │ │ │ │ └── CameraHandler.swift │ │ │ │ ├── CometChatSnackBoard │ │ │ │ │ ├── AccessibleMessage.swift │ │ │ │ │ ├── Animator.swift │ │ │ │ │ ├── BackgroundViewable.swift │ │ │ │ │ ├── BaseView.swift │ │ │ │ │ ├── CALayer+Extensions.swift │ │ │ │ │ ├── CometChatSnackBoard.h │ │ │ │ │ ├── CometChatSnackBoard.swift │ │ │ │ │ ├── CornerRoundingView.swift │ │ │ │ │ ├── EdgeAnimation.swift │ │ │ │ │ ├── Error.swift │ │ │ │ │ ├── Identifiable.swift │ │ │ │ │ ├── KeyboardTrackingView.swift │ │ │ │ │ ├── Layout.swift │ │ │ │ │ ├── MarginAdjustable+Extensions.swift │ │ │ │ │ ├── MarginAdjustable.swift │ │ │ │ │ ├── MaskingView.swift │ │ │ │ │ ├── MessageView.swift │ │ │ │ │ ├── NSBundle+Extensions.swift │ │ │ │ │ ├── NSLayoutConstraint+Extensions.swift │ │ │ │ │ ├── PassthroughView.swift │ │ │ │ │ ├── PassthroughWindow.swift │ │ │ │ │ ├── PhysicsAnimation.swift │ │ │ │ │ ├── PhysicsPanHandler.swift │ │ │ │ │ ├── Presenter.swift │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── CardView.xib │ │ │ │ │ │ ├── CenteredView.xib │ │ │ │ │ │ ├── MessageView.xib │ │ │ │ │ │ ├── StatusLine.xib │ │ │ │ │ │ ├── TabView.xib │ │ │ │ │ │ ├── closeIcon.png │ │ │ │ │ │ ├── closeIcon@2x.png │ │ │ │ │ │ ├── closeIcon@3x.png │ │ │ │ │ │ ├── errorIcon.png │ │ │ │ │ │ ├── errorIcon@2x.png │ │ │ │ │ │ ├── errorIcon@3x.png │ │ │ │ │ │ ├── errorIconLight.png │ │ │ │ │ │ ├── errorIconLight@2x.png │ │ │ │ │ │ ├── errorIconLight@3x.png │ │ │ │ │ │ ├── errorIconSubtle.png │ │ │ │ │ │ ├── errorIconSubtle@2x.png │ │ │ │ │ │ ├── errorIconSubtle@3x.png │ │ │ │ │ │ ├── infoIcon.png │ │ │ │ │ │ ├── infoIcon@2x.png │ │ │ │ │ │ ├── infoIcon@3x.png │ │ │ │ │ │ ├── infoIconLight.png │ │ │ │ │ │ ├── infoIconLight@2x.png │ │ │ │ │ │ ├── infoIconLight@3x.png │ │ │ │ │ │ ├── infoIconSubtle.png │ │ │ │ │ │ ├── infoIconSubtle@2x.png │ │ │ │ │ │ ├── infoIconSubtle@3x.png │ │ │ │ │ │ ├── successIcon.png │ │ │ │ │ │ ├── successIcon@2x.png │ │ │ │ │ │ ├── successIcon@3x.png │ │ │ │ │ │ ├── successIconLight.png │ │ │ │ │ │ ├── successIconLight@2x.png │ │ │ │ │ │ ├── successIconLight@3x.png │ │ │ │ │ │ ├── successIconSubtle.png │ │ │ │ │ │ ├── successIconSubtle@2x.png │ │ │ │ │ │ ├── successIconSubtle@3x.png │ │ │ │ │ │ ├── warningIcon.png │ │ │ │ │ │ ├── warningIcon@2x.png │ │ │ │ │ │ ├── warningIcon@3x.png │ │ │ │ │ │ ├── warningIconLight.png │ │ │ │ │ │ ├── warningIconLight@2x.png │ │ │ │ │ │ ├── warningIconLight@3x.png │ │ │ │ │ │ ├── warningIconSubtle.png │ │ │ │ │ │ ├── warningIconSubtle@2x.png │ │ │ │ │ │ └── warningIconSubtle@3x.png │ │ │ │ │ ├── SwiftMessages.Config+Extensions.swift │ │ │ │ │ ├── SwiftMessagesSegue.swift │ │ │ │ │ ├── Theme.swift │ │ │ │ │ ├── UIEdgeInsets+Extensions.swift │ │ │ │ │ ├── UILayoutPriority+Extensions.swift │ │ │ │ │ ├── UIViewController+Extensions.swift │ │ │ │ │ ├── UIWindow+Extensions.swift │ │ │ │ │ ├── Weak.swift │ │ │ │ │ └── WindowViewController.swift │ │ │ │ ├── DeviceDetection │ │ │ │ │ └── DeviceDetection.swift │ │ │ │ ├── GrowingTextView │ │ │ │ │ ├── GrowingInternalTextView.swift │ │ │ │ │ ├── GrowingTextView.swift │ │ │ │ │ └── Protocol.swift │ │ │ │ ├── Image Transformation │ │ │ │ │ └── ImageTransformation.swift │ │ │ │ ├── Large Emojis │ │ │ │ │ └── LargeEmojis.swift │ │ │ │ ├── Large Titles │ │ │ │ │ ├── LargeTitleDisplayMode+String.swift │ │ │ │ │ └── UIViewController+LargeTitle.swift │ │ │ │ ├── Message Hyperlink │ │ │ │ │ ├── HyperlinkBuilder.swift │ │ │ │ │ ├── HyperlinkLabel.swift │ │ │ │ │ └── HyperlinkType.swift │ │ │ │ ├── Set Empty Message │ │ │ │ │ └── EmptyMessage.swift │ │ │ │ ├── ShowAlert │ │ │ │ │ └── ShowAlert.swift │ │ │ │ ├── Snackbar │ │ │ │ │ └── CometChatSnackBar.swift │ │ │ │ ├── TableViewTransformation │ │ │ │ │ └── TableViewTransformation.swift │ │ │ │ ├── Text Tranformation │ │ │ │ │ └── TextTransformation.swift │ │ │ │ └── View Transformation │ │ │ │ │ └── ViewTransformation.swift │ │ │ ├── Icons │ │ │ │ ├── CallsView │ │ │ │ │ ├── audioCall.png │ │ │ │ │ ├── audioCall@2x.png │ │ │ │ │ ├── audioCall@3x.png │ │ │ │ │ ├── audioCalling.png │ │ │ │ │ ├── audioCalling@2x.png │ │ │ │ │ ├── audioCalling@3x.png │ │ │ │ │ ├── calling.png │ │ │ │ │ ├── calling@2x.png │ │ │ │ │ ├── calling@3x.png │ │ │ │ │ ├── end.png │ │ │ │ │ ├── end@2x.png │ │ │ │ │ ├── end@3x.png │ │ │ │ │ ├── incomingAudio.png │ │ │ │ │ ├── incomingAudio@2x.png │ │ │ │ │ ├── incomingAudio@3x.png │ │ │ │ │ ├── incomingVideo.png │ │ │ │ │ ├── incomingVideo@2x.png │ │ │ │ │ ├── incomingVideo@3x.png │ │ │ │ │ ├── missedAudio.png │ │ │ │ │ ├── missedAudio@2x.png │ │ │ │ │ ├── missedAudio@3x.png │ │ │ │ │ ├── missedVideo.png │ │ │ │ │ ├── missedVideo@2x.png │ │ │ │ │ ├── missedVideo@3x.png │ │ │ │ │ ├── newCall.png │ │ │ │ │ ├── newCall@2x.png │ │ │ │ │ ├── newCall@3x.png │ │ │ │ │ ├── outgoingAudio.png │ │ │ │ │ ├── outgoingAudio@2x.png │ │ │ │ │ ├── outgoingAudio@3x.png │ │ │ │ │ ├── outgoingVideo.png │ │ │ │ │ ├── outgoingVideo@2x.png │ │ │ │ │ ├── outgoingVideo@3x.png │ │ │ │ │ ├── videoCall.png │ │ │ │ │ ├── videoCall@2x.png │ │ │ │ │ ├── videoCall@3x.png │ │ │ │ │ ├── videoCalling.png │ │ │ │ │ ├── videoCalling@2x.png │ │ │ │ │ └── videoCalling@3x.png │ │ │ │ ├── ChatView │ │ │ │ │ ├── add.png │ │ │ │ │ ├── add@2x.png │ │ │ │ │ ├── add@3x.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── close@2x.png │ │ │ │ │ ├── close@3x.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── forward@2x.png │ │ │ │ │ ├── forward@3x.png │ │ │ │ │ ├── microphone.png │ │ │ │ │ ├── microphone@2x.png │ │ │ │ │ ├── microphone@3x.png │ │ │ │ │ ├── send.png │ │ │ │ │ ├── send@2x.png │ │ │ │ │ ├── send@3x.png │ │ │ │ │ ├── sticker.png │ │ │ │ │ ├── sticker@2x.png │ │ │ │ │ ├── sticker@3x.png │ │ │ │ │ ├── stickerDark.png │ │ │ │ │ ├── stickerDark@2x.png │ │ │ │ │ └── stickerDark@3x.png │ │ │ │ ├── ConversationList │ │ │ │ │ ├── blueTick.png │ │ │ │ │ ├── blueTick@2x.png │ │ │ │ │ └── blueTick@3x.png │ │ │ │ ├── GroupList │ │ │ │ │ ├── addIcon.png │ │ │ │ │ ├── addIcon@2x.png │ │ │ │ │ ├── addIcon@3x.png │ │ │ │ │ ├── createGroup.png │ │ │ │ │ ├── createGroup@2x.png │ │ │ │ │ └── createGroup@3x.png │ │ │ │ ├── MessageList │ │ │ │ │ ├── back.png │ │ │ │ │ ├── back@2x.png │ │ │ │ │ ├── back@3x.png │ │ │ │ │ ├── close1.png │ │ │ │ │ ├── close1@2x.png │ │ │ │ │ ├── close1@3x.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy@2x.png │ │ │ │ │ ├── copy@3x.png │ │ │ │ │ ├── createMeeting.png │ │ │ │ │ ├── createMeeting@2x.png │ │ │ │ │ ├── createMeeting@3x.png │ │ │ │ │ ├── default-image.png │ │ │ │ │ ├── defaultImage.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── delete@2x.png │ │ │ │ │ ├── delete@3x.png │ │ │ │ │ ├── delivered.png │ │ │ │ │ ├── delivered@2x.png │ │ │ │ │ ├── delivered@3x.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── edit@2x.png │ │ │ │ │ ├── edit@3x.png │ │ │ │ │ ├── forward1.png │ │ │ │ │ ├── forward1@2x.png │ │ │ │ │ ├── forward1@3x.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── heart@2x.png │ │ │ │ │ ├── heart@3x.png │ │ │ │ │ ├── more_vertical.png │ │ │ │ │ ├── more_vertical@2x.png │ │ │ │ │ ├── more_vertical@3x.png │ │ │ │ │ ├── play.png │ │ │ │ │ ├── play@2x.png │ │ │ │ │ ├── play@3x.png │ │ │ │ │ ├── read.png │ │ │ │ │ ├── read@2x.png │ │ │ │ │ ├── read@3x.png │ │ │ │ │ ├── reply-private.png │ │ │ │ │ ├── reply-private1.png │ │ │ │ │ ├── reply-private1@2x.png │ │ │ │ │ ├── reply-private1@3x.png │ │ │ │ │ ├── reply-private@2x.png │ │ │ │ │ ├── reply-private@3x.png │ │ │ │ │ ├── reply.png │ │ │ │ │ ├── reply@2x.png │ │ │ │ │ ├── reply@3x.png │ │ │ │ │ ├── sent.png │ │ │ │ │ ├── sent@2x.png │ │ │ │ │ ├── sent@3x.png │ │ │ │ │ ├── share.png │ │ │ │ │ ├── share@2x.png │ │ │ │ │ ├── share@3x.png │ │ │ │ │ ├── slackModal.png │ │ │ │ │ ├── sticker1.png │ │ │ │ │ ├── sticker1@2x.png │ │ │ │ │ ├── sticker1@3x.png │ │ │ │ │ ├── thread.png │ │ │ │ │ ├── thread@2x.png │ │ │ │ │ ├── thread@3x.png │ │ │ │ │ ├── thumbsup.png │ │ │ │ │ ├── thumbsup@2x.png │ │ │ │ │ ├── thumbsup@3x.png │ │ │ │ │ ├── translate.png │ │ │ │ │ ├── translate@2x.png │ │ │ │ │ ├── translate@3x.png │ │ │ │ │ ├── unsafeContent.png │ │ │ │ │ ├── unsafeContent@2x.png │ │ │ │ │ ├── unsafeContent@3x.png │ │ │ │ │ ├── wait.png │ │ │ │ │ ├── wait@2x.png │ │ │ │ │ ├── wait@3x.png │ │ │ │ │ ├── whiteboard.png │ │ │ │ │ ├── whiteboard@2x.png │ │ │ │ │ ├── whiteboard@3x.png │ │ │ │ │ ├── writeboard.png │ │ │ │ │ ├── writeboard@2x.png │ │ │ │ │ ├── writeboard@3x.png │ │ │ │ │ ├── 􀅴.png │ │ │ │ │ ├── 􀅴@2x.png │ │ │ │ │ ├── 􀅴@3x.png │ │ │ │ │ ├── 􀈂.png │ │ │ │ │ ├── 􀈂@2x.png │ │ │ │ │ ├── 􀈂@3x.png │ │ │ │ │ ├── 􀈎.png │ │ │ │ │ ├── 􀈎@2x.png │ │ │ │ │ ├── 􀈎@3x.png │ │ │ │ │ ├── 􀈑.png │ │ │ │ │ ├── 􀈑@2x.png │ │ │ │ │ ├── 􀈑@3x.png │ │ │ │ │ ├── 􀈕.png │ │ │ │ │ ├── 􀈕@2x.png │ │ │ │ │ ├── 􀈕@3x.png │ │ │ │ │ ├── 􀉁.png │ │ │ │ │ ├── 􀉁@2x.png │ │ │ │ │ ├── 􀉁@3x.png │ │ │ │ │ ├── 􀉐.png │ │ │ │ │ ├── 􀉐@2x.png │ │ │ │ │ ├── 􀉐@3x.png │ │ │ │ │ ├── 􀋑.png │ │ │ │ │ ├── 􀋑@2x.png │ │ │ │ │ ├── 􀋑@3x.png │ │ │ │ │ ├── 􀌞.png │ │ │ │ │ ├── 􀌞@2x.png │ │ │ │ │ ├── 􀌞@3x.png │ │ │ │ │ ├── 􀌤.png │ │ │ │ │ ├── 􀌤@2x.png │ │ │ │ │ ├── 􀌤@3x.png │ │ │ │ │ ├── 􀌮.png │ │ │ │ │ ├── 􀌮@2x.png │ │ │ │ │ ├── 􀌮@3x.png │ │ │ │ │ ├── 􀌲.png │ │ │ │ │ ├── 􀌲@2x.png │ │ │ │ │ ├── 􀌲@3x.png │ │ │ │ │ ├── 􀌶.png │ │ │ │ │ ├── 􀌶@2x.png │ │ │ │ │ ├── 􀌶@3x.png │ │ │ │ │ ├── 􀣵.png │ │ │ │ │ ├── 􀣵@2x.png │ │ │ │ │ └── 􀣵@3x.png │ │ │ │ ├── SettingsView │ │ │ │ │ ├── 􀁝.png │ │ │ │ │ ├── 􀁝@2x.png │ │ │ │ │ ├── 􀁝@3x.png │ │ │ │ │ ├── 􀇿.png │ │ │ │ │ ├── 􀇿@2x.png │ │ │ │ │ ├── 􀇿@3x.png │ │ │ │ │ ├── 􀉼.png │ │ │ │ │ ├── 􀉼@2x.png │ │ │ │ │ ├── 􀉼@3x.png │ │ │ │ │ ├── 􀋚.png │ │ │ │ │ ├── 􀋚@2x.png │ │ │ │ │ ├── 􀋚@3x.png │ │ │ │ │ ├── 􀌧.png │ │ │ │ │ ├── 􀌧@2x.png │ │ │ │ │ └── 􀌧@3x.png │ │ │ │ ├── Shared │ │ │ │ │ ├── info.png │ │ │ │ │ ├── info@2x.png │ │ │ │ │ ├── info@3x.png │ │ │ │ │ ├── location-map.png │ │ │ │ │ ├── 􀌾.png │ │ │ │ │ ├── 􀌾@2x.png │ │ │ │ │ ├── 􀌾@3x.png │ │ │ │ │ ├── 􀍉.png │ │ │ │ │ ├── 􀍉@2x.png │ │ │ │ │ └── 􀍉@3x.png │ │ │ │ ├── Tabbar │ │ │ │ │ ├── calls.png │ │ │ │ │ ├── calls@2x.png │ │ │ │ │ ├── calls@3x.png │ │ │ │ │ ├── chats.png │ │ │ │ │ ├── chats@2x.png │ │ │ │ │ ├── chats@3x.png │ │ │ │ │ ├── contacts.png │ │ │ │ │ ├── contacts@2x.png │ │ │ │ │ ├── contacts@3x.png │ │ │ │ │ ├── groups.png │ │ │ │ │ ├── groups@2x.png │ │ │ │ │ ├── groups@3x.png │ │ │ │ │ ├── more.png │ │ │ │ │ ├── more@2x.png │ │ │ │ │ └── more@3x.png │ │ │ │ └── UserView │ │ │ │ │ ├── Blue Ticks.png │ │ │ │ │ ├── Blue Ticks@2x.png │ │ │ │ │ ├── Blue Ticks@3x.png │ │ │ │ │ ├── defaultAvatar.jpg │ │ │ │ │ ├── downArrow.png │ │ │ │ │ ├── downArrow@2x.png │ │ │ │ │ ├── downArrow@3x.png │ │ │ │ │ ├── editIcon.png │ │ │ │ │ ├── editIcon@2x.png │ │ │ │ │ └── editIcon@3x.png │ │ │ └── Ringtones │ │ │ │ ├── IncomingCall.wav │ │ │ │ ├── IncomingMessage.wav │ │ │ │ ├── IncomingMessageOther.wav │ │ │ │ ├── NewAnnouncement.wav │ │ │ │ ├── OutgoingCall.wav │ │ │ │ ├── OutgoingMessage.wav │ │ │ │ └── OutgoingMessege.wav │ │ └── UIKit Settings │ │ │ └── UIKitSettings.swift │ └── main.m └── Podfile ├── License.md ├── README.md ├── RealtimeCallEvents.md ├── SECURITY.md ├── SUPPORT.md └── Screenshots ├── Auth.png ├── appScreenshot.jpg └── logo.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .DS_Store 3 | ios-objective-c-chat-app/.DS_Store 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@1x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/BigLogo.imageset/BigLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/BigLogo.imageset/BigLogo.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/captainamerica.imageset/captainamerica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/captainamerica.imageset/captainamerica.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/captainamerica.imageset/captainamerica@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/captainamerica.imageset/captainamerica@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/captainamerica.imageset/captainamerica@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/captainamerica.imageset/captainamerica@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/cyclops.imageset/cyclops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/cyclops.imageset/cyclops.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/cyclops.imageset/cyclops@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/cyclops.imageset/cyclops@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/cyclops.imageset/cyclops@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/cyclops.imageset/cyclops@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/ironman.imageset/ironman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/ironman.imageset/ironman.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/ironman.imageset/ironman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/ironman.imageset/ironman@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/ironman.imageset/ironman@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/ironman.imageset/ironman@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/spiderman.imageset/spiderman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/spiderman.imageset/spiderman.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/spiderman.imageset/spiderman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/spiderman.imageset/spiderman@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/spiderman.imageset/spiderman@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/spiderman.imageset/spiderman@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/wolverine.imageset/wolverine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/wolverine.imageset/wolverine.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/wolverine.imageset/wolverine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/wolverine.imageset/wolverine@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/wolverine.imageset/wolverine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/Demo Users/wolverine.imageset/wolverine@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded_white.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded_white@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_rounded.imageset/cometchat_rounded_white@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/components.imageset/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/components.imageset/components.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/components.imageset/components@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/components.imageset/components@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/components.imageset/components@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/components.imageset/components@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/facetime.imageset/facetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/facetime.imageset/facetime.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/rocket.imageset/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/rocket.imageset/project.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/screen.imageset/smartphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/screen.imageset/smartphone.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Assets.xcassets/wall.imageset/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Assets.xcassets/wall.imageset/wall.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-audio-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-audio-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-audio-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-audio-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-audio-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-audio-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-back.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-back@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-back@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-delete.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-delete@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-delete@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/calls-info@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/end-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-audio-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/incoming-video-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/new-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-audio-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/outgoing-video-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Calls/Resources/video-call@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-back.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-back@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-back@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-create.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-create@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-create@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-create@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-create@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-delete.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-delete@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-delete@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-delivered@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-read@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Chats/Resources/chats-message-sent@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-back.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-back@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-back@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-calls.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-calls@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-calls@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-calls@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-calls@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-chats.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-chats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-chats@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-chats@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-chats@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-groups.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-groups@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-groups@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-groups@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-groups@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-more.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-more@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-more@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-users.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-users@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-users@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-users@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/CometChat UI/Resources/cometchatui-users@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/ban-member@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-create.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-create@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-create@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-create@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-create@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-delete.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-delete@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/groups-delete@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/password-protected-group@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@1.5x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Groups/Resources/private-group@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/add-circle-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/add-circle-filled.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/add-circle-filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/add-circle-filled@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/add-circle-filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/add-circle-filled@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/copy-paste@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-delivered@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-read@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-sent@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/message-translate@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-attach@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-audio-file@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-back.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-back@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-back@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-camera@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-close-circle@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-document@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-collaborative-whiteboard@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-delete@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-edit@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-emoji@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-file-upload@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-forward-message@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-image@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-info.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-info@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-info@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-location@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-polls@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-share@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-stickers@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-video-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-video-call.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-video-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-video-call@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-video-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-video-call@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/messages-wait@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/microphone-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/microphone-circle.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/microphone-circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/microphone-circle@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/microphone-circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/microphone-circle@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/photo-library@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message-in-private@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/reply-message@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-filled.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-filled@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-filled@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/send-message-in-private@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Messages/Resources/threaded-message@4x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-back.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-back@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-back@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-edit.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-edit@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-edit@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-privacy.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-privacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-privacy@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-privacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/UserProfile/Resources/userprofile-privacy@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Users/Resources/users-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Users/Resources/users-back.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Users/Resources/users-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Users/Resources/users-back@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UI Components/Users/Resources/users-back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UI Components/Users/Resources/users-back@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/closeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/closeIcon.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/closeIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/closeIcon@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/closeIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/closeIcon@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/errorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/errorIcon.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/errorIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/errorIcon@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/infoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Helper Extensions/CometChatSnackBoard/Resources/infoIcon.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCall.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCall@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCall@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCall@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCalling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCalling.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCalling@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCalling@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCalling@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/audioCalling@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/calling.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/calling@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/calling@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/calling@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/calling@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/end.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/end@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/end@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/end@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingAudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingAudio.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingAudio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingAudio@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingAudio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingAudio@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingVideo.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingVideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingVideo@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingVideo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/incomingVideo@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedAudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedAudio.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedAudio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedAudio@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedAudio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedAudio@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedVideo.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedVideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedVideo@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedVideo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/missedVideo@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/newCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/newCall.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/newCall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/newCall@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/newCall@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/newCall@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingAudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingAudio.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingAudio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingAudio@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingAudio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingAudio@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingVideo.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingVideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingVideo@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingVideo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/outgoingVideo@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCall.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCall@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCall@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCall@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCalling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCalling.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCalling@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCalling@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCalling@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/CallsView/videoCalling@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/add.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/add@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/add@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/close.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/close@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/close@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/forward.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/forward@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/forward@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/microphone.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/microphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/microphone@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/microphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/microphone@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/send.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/send@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/send@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/sticker.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/sticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/sticker@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/sticker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/sticker@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/stickerDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/stickerDark.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/stickerDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/stickerDark@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/stickerDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ChatView/stickerDark@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ConversationList/blueTick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ConversationList/blueTick.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ConversationList/blueTick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ConversationList/blueTick@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ConversationList/blueTick@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/ConversationList/blueTick@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/addIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/addIcon.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/addIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/addIcon@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/addIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/addIcon@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/createGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/createGroup.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/createGroup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/createGroup@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/createGroup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/GroupList/createGroup@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/back.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/back@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/back@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/close1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/close1.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/close1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/close1@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/close1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/close1@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/copy.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/copy@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/copy@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/createMeeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/createMeeting.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/createMeeting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/createMeeting@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/createMeeting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/createMeeting@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/default-image.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/defaultImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/defaultImage.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delete.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delete@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delete@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delivered.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delivered@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delivered@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delivered@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/delivered@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/edit.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/edit@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/edit@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/forward1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/forward1.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/forward1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/forward1@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/forward1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/forward1@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/heart.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/heart@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/heart@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/more_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/more_vertical.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/more_vertical@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/more_vertical@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/more_vertical@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/more_vertical@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/play.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/play@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/play@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/read.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/read@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/read@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private1.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private1@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private1@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply-private@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/reply@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sent.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sent@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sent@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/share.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/share@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/share@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/slackModal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/slackModal.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sticker1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sticker1.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sticker1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sticker1@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sticker1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/sticker1@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thread.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thread@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thread@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thread@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thread@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thumbsup.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thumbsup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thumbsup@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thumbsup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/thumbsup@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/translate.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/translate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/translate@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/translate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/translate@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/unsafeContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/unsafeContent.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/unsafeContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/unsafeContent@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/unsafeContent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/unsafeContent@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/wait.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/wait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/wait@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/wait@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/wait@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/whiteboard.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/whiteboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/whiteboard@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/whiteboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/whiteboard@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/writeboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/writeboard.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/writeboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/writeboard@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/writeboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/writeboard@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀅴.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀅴.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀅴@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀅴@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀅴@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀅴@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈂.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈂.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈂@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈂@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈂@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈂@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈎.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈎.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈎@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈎@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈎@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈎@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈑.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈑@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈑@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈑@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈑@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈕.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈕.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈕@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈕@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈕@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀈕@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉁.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉁.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉁@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉁@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉁@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉁@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉐.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉐.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉐@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉐@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉐@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀉐@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀋑.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀋑.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀋑@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀋑@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀋑@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀋑@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌞.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌞.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌞@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌞@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌞@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌞@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌤.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌤.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌤@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌤@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌤@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌤@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌮.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌮@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌮@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌮@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌮@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌲.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌲.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌲@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌲@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌲@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌲@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌶.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌶.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌶@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌶@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌶@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀌶@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀣵.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀣵.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀣵@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀣵@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀣵@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/MessageList/􀣵@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀁝.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀁝.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀁝@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀁝@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀁝@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀁝@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀇿.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀇿.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀇿@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀇿@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀇿@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀇿@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀉼.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀉼.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀉼@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀉼@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀉼@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀉼@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀋚.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀋚.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀋚@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀋚@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀋚@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀋚@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀌧.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀌧.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀌧@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀌧@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀌧@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/SettingsView/􀌧@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/info.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/info@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/info@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/location-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/location-map.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀌾.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀌾.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀌾@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀌾@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀌾@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀌾@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀍉.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀍉.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀍉@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀍉@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀍉@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Shared/􀍉@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/calls.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/calls@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/calls@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/calls@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/calls@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/chats.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/chats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/chats@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/chats@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/chats@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/contacts.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/contacts@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/contacts@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/groups.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/groups@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/groups@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/groups@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/groups@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/more.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/more@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/Tabbar/more@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/Blue Ticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/Blue Ticks.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/Blue Ticks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/Blue Ticks@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/Blue Ticks@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/Blue Ticks@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/defaultAvatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/defaultAvatar.jpg -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/downArrow.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/downArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/downArrow@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/downArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/downArrow@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/editIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/editIcon.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/editIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/editIcon@2x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/editIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Icons/UserView/editIcon@3x.png -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/IncomingCall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/IncomingCall.wav -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/IncomingMessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/IncomingMessage.wav -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/IncomingMessageOther.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/IncomingMessageOther.wav -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/NewAnnouncement.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/NewAnnouncement.wav -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/OutgoingCall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/OutgoingCall.wav -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/OutgoingMessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/OutgoingMessage.wav -------------------------------------------------------------------------------- /CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/OutgoingMessege.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/CometChatObjc/CometChatObjc/Library/UIKit Resources/Ringtones/OutgoingMessege.wav -------------------------------------------------------------------------------- /CometChatObjc/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '11.0' 2 | use_frameworks! 3 | 4 | target 'CometChatObjc' do 5 | pod 'CometChatPro', '3.0.900' 6 | pod 'CometChatCalls', '2.1.1-xc' 7 | end -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- 1 | # Getting Support 2 | 3 | The quickest way to get support is to contact us via your CometChat Pro Dashboard. 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Screenshots/Auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/Screenshots/Auth.png -------------------------------------------------------------------------------- /Screenshots/appScreenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/Screenshots/appScreenshot.jpg -------------------------------------------------------------------------------- /Screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/ios-objective-c-chat-app/22120f0099cafff16b2358cf1bdd5829f6fb4cdd/Screenshots/logo.png --------------------------------------------------------------------------------