├── .github └── workflows │ └── tuist-build.yml ├── .gitignore ├── .tuist-version ├── Apps ├── AddExtraDataMessageOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AddExtraDataToMessageUseCase.swift │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── AddExtraDataMessageCell.swift │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── AddRemoveOperatorsGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ ├── GroupChannelMemberCell.swift │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── AddRemoveOperatorUseCase.swift │ │ └── ViewController.swift ├── AddStructuredDataMessageOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ ├── OpenChannelViewController.swift │ │ └── StructuredDataMessageCell.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── AddStructuredDataUseCase.swift │ │ └── ViewController.swift ├── BanUnBanUserGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ ├── GroupChannelMemberCell.swift │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── BanAndUnBanUseCase.swift │ │ └── ViewController.swift ├── BasicGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── BasicOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── CategorizeMessageGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── CategorizeUserMessageCell.swift │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── PinnedMessages │ │ └── GroupChannelPinnedMessagesViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── CategorizeMessageUseCase.swift │ │ └── GroupChannelPinnedMessageListUseCase.swift │ │ └── ViewController.swift ├── CategorizeMessageOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── CategorizeUserMessageCell.swift │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── PinnedMessages │ │ └── OpenChannelPinnedMessagesViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── CategorizeMessageUseCase.swift │ │ └── OpenChannelPinnedMessageListUseCase.swift │ │ └── ViewController.swift ├── CategorizeWithCustomTypeGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ ├── GroupChannelCustomTypeListCell.swift │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── CreateWithCategoryGroupChannelUseCase.swift │ │ └── ViewController.swift ├── CategorizeWithCustomTypeOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── CreateWithCategoryOpenChannelUseCase.swift │ │ └── ViewController.swift ├── ChannelTypesGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ ├── GroupChannelListViewController.swift │ │ └── GroupChannelTypeListCell.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── CreateGroupChannelWithTypeUseCase.swift │ │ └── ViewController.swift ├── CopyMessageOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ ├── CopyMessageToChannelViewController.swift │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── CopyMessageUseCase.swift │ │ └── ViewController.swift ├── DeleteMessageOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── DeleteMessageUseCase.swift │ │ └── ViewController.swift ├── FreezeUnFreezeGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Freeze.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── GenerateThumbnailForFileOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── GenerateThumbnailFileMessageUseCase.swift │ │ └── ViewController.swift ├── HideOrArchiveGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── HideArchiveChannelListUsecase.swift │ │ └── HideArchiveChannelUsecase.swift │ │ └── ViewController.swift ├── LocalCachingGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── LocalCachingMessageListUseCase.swift │ │ └── ViewController.swift ├── MarkAsReadGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── MarkAsReadUseCase.swift │ │ └── ViewController.swift ├── MembersReadMessageGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ ├── GroupChannelMemberListViewController.swift │ │ └── GroupChannelReadMembersListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── MembersReadMessageUseCase.swift │ │ └── ViewController.swift ├── MembersUnReadMessageGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ ├── GroupChannelMemberListViewController.swift │ │ └── GroupChannelUnReadMembersListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── MembersUnReadMessageUseCase.swift │ │ └── ViewController.swift ├── MentionUsersInMessageGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ ├── GroupChannelViewController.swift │ │ └── MentionedUserMessageCell.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── GroupChannelUserSelectionUseCase.swift │ │ └── MentionUsersInMessageUseCase.swift │ │ ├── UserSelection │ │ └── MentionUserSelectionViewController.swift │ │ └── ViewController.swift ├── MentionUsersInMessageOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── MentionedUserMessageCell.swift │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── MentionUsersInMessageUseCase.swift │ │ └── OpenChannelUserSelectionUseCase.swift │ │ ├── UserSelection │ │ └── MentionUserSelectionViewController.swift │ │ └── ViewController.swift ├── MessageThreadingGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ ├── GroupChannelViewController.swift │ │ └── MesageThreadCell.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── ReplyToMessageUseCase.swift │ │ └── ViewController.swift ├── MessageThreadingOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── MesageThreadCell.swift │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── ReplyToMessageUseCase.swift │ │ └── ViewController.swift ├── MessageUndeliveredCountGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── MessageStatusCell │ │ └── MessageUndeliveredStatusCell.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── MessageUndeliveredMembersCountUseCase.swift │ │ └── ViewController.swift ├── MetaDataCounterOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── AddExtraDataMessageCell.swift │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── MetaDataCounterUseCase.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── MuteAndUnMuteUsersGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ ├── GroupChannelMemberCell.swift │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── MuteAndUnmuteUseCase.swift │ │ └── ViewController.swift ├── MutedAndBannedUsersListGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ ├── GroupChannelBannedMemberListViewController.swift │ │ ├── GroupChannelMemberListViewController.swift │ │ └── GroupChannelMutedMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── BannedMembersListUseCase.swift │ │ └── MutedMembersListUseCase.swift │ │ └── ViewController.swift ├── OpenGraphTagsGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ ├── GroupChannelViewController.swift │ │ └── OGMetaDataMessageCell.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── OpenGraphTagsOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OGMetaDataMessageCell.swift │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── OperatorsListGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ ├── GroupChannelMemberListViewController.swift │ │ └── GroupChannelOperatorListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── GroupChannelOperatorListUseCase.swift │ │ └── ViewController.swift ├── OrderedMembersOperatorsGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── OrderedMemberOperatorsUseCase.swift │ │ └── ViewController.swift ├── PinMessageGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ ├── GroupChannelViewController.swift │ │ └── PinMessageCell.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── PinUnpinMessageUseCase.swift │ │ └── ViewController.swift ├── PollsGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+PollCell.swift │ │ ├── GroupChannelViewController+PollEvents.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ ├── GroupChannelViewController.swift │ │ ├── PollCell.swift │ │ └── PollOptionView.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Poll │ │ ├── CreatePollOptionView.swift │ │ ├── CreatePollViewController.swift │ │ └── TimePicker.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── PollUseCase.swift │ │ └── ViewController.swift ├── PushNotificationsGroupChannel │ ├── Project.swift │ ├── PushNotificationsGroupChannel.entitlements │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── PushNotificationUseCase.swift │ │ └── ViewController.swift ├── PushNotificationsTranslationGroupChannel │ ├── Project.swift │ ├── PushNotificationsGroupChannel.entitlements │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── PushNotificationTranslationUseCase.swift │ │ ├── PushNotificationUseCase.swift │ │ └── UserConnectionUseCase.swift │ │ ├── UserLoginViewController.swift │ │ └── ViewController.swift ├── ReactToMessageGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ ├── GroupChannelViewController.swift │ │ └── ReactToMessageCell.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── ReactToMessageUseCase.swift │ │ └── ViewController.swift ├── ReportMessageUserGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── ReportMessageUserUseCase.swift │ │ └── ViewController.swift ├── ReportMessageUserOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── ReportMessageUserUseCase.swift │ │ └── ViewController.swift ├── ScheduledMessagesGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+ScheduleMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ ├── GroupChannelViewController.swift │ │ ├── ScheduledMessageInputView.swift │ │ └── UIDateTimePickerAlertController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── ScheduledMessages │ │ ├── ScheduleMessagesViewController+TimePicker.swift │ │ ├── ScheduledMessageCell.swift │ │ ├── ScheduledMessagesViewController+EditMessage.swift │ │ └── ScheduledMessagesViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── ScheduleMessageUseCase.swift │ │ └── ViewController.swift ├── SendVariousTypesOfFileOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ ├── Main.storyboard │ │ └── Sample_Sendbird.pdf │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ └── ViewController.swift ├── TrackFileUploadAndCancelGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── TrackAndCancelFileUploadUseCase.swift │ │ └── ViewController.swift ├── TypingIndicatorGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── GroupChannelTypingIndicatorUseCase.swift │ │ └── ViewController.swift ├── UpdateDeleteMessageGroupChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ └── UpdateDeleteMessageUseCase.swift │ │ └── ViewController.swift ├── UpdateMessageOpenChannel │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── OpenChannelViewController+EditMessage.swift │ │ ├── OpenChannelViewController+FileMessage.swift │ │ ├── OpenChannelViewController+Setting.swift │ │ └── OpenChannelViewController.swift │ │ ├── ChannelList │ │ └── OpenChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateOpenChannelViewController.swift │ │ ├── Participant │ │ └── OpenChannelParticipantListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UpdateMessageUseCase.swift │ │ └── ViewController.swift ├── UserDoNotDisturbSnooze │ ├── Project.swift │ ├── PushNotificationsGroupChannel.entitlements │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ ├── GroupChannelViewController+EditMessage.swift │ │ ├── GroupChannelViewController+FileMessage.swift │ │ ├── GroupChannelViewController+Setting.swift │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ ├── PushNotificationUseCase.swift │ │ └── UserDNDSnoozeUseCase.swift │ │ └── ViewController.swift ├── UserNickNameAndPicture │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appicon_100.png │ │ │ │ ├── appicon_1024-1.png │ │ │ │ ├── appicon_1024.png │ │ │ │ ├── appicon_114.png │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_128.png │ │ │ │ ├── appicon_144.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_16.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_256.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_32.png │ │ │ │ ├── appicon_40-1.png │ │ │ │ ├── appicon_40-2.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_50.png │ │ │ │ ├── appicon_512.png │ │ │ │ ├── appicon_57.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_64.png │ │ │ │ ├── appicon_72.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ └── appicon_87.png │ │ │ └── Contents.json │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Sources │ │ ├── AppDelegate.swift │ │ ├── Channel │ │ │ ├── GroupChannelViewController+EditMessage.swift │ │ │ ├── GroupChannelViewController+FileMessage.swift │ │ │ ├── GroupChannelViewController+Setting.swift │ │ │ └── GroupChannelViewController.swift │ │ ├── ChannelList │ │ │ └── GroupChannelListViewController.swift │ │ ├── CreateChannel │ │ │ └── CreateGroupChannelViewController.swift │ │ ├── MemberList │ │ │ └── GroupChannelMemberListViewController.swift │ │ ├── Setting │ │ │ └── SettingViewController.swift │ │ ├── UseCase │ │ │ └── UserNicknameAndPictureUseCase.swift │ │ ├── UserLoginViewController.swift │ │ ├── UserProfileEditViewController.swift │ │ └── ViewController.swift │ └── User │ │ ├── UserLoginViewController.swift │ │ └── UserProfileEditViewController.swift └── iOSTrueGroupChannel │ ├── Project.swift │ ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── appicon_100.png │ │ │ ├── appicon_1024-1.png │ │ │ ├── appicon_1024.png │ │ │ ├── appicon_114.png │ │ │ ├── appicon_120.png │ │ │ ├── appicon_128.png │ │ │ ├── appicon_144.png │ │ │ ├── appicon_152.png │ │ │ ├── appicon_16.png │ │ │ ├── appicon_167.png │ │ │ ├── appicon_180.png │ │ │ ├── appicon_20.png │ │ │ ├── appicon_256.png │ │ │ ├── appicon_29.png │ │ │ ├── appicon_32.png │ │ │ ├── appicon_40-1.png │ │ │ ├── appicon_40-2.png │ │ │ ├── appicon_40.png │ │ │ ├── appicon_50.png │ │ │ ├── appicon_512.png │ │ │ ├── appicon_57.png │ │ │ ├── appicon_58.png │ │ │ ├── appicon_60.png │ │ │ ├── appicon_64.png │ │ │ ├── appicon_72.png │ │ │ ├── appicon_76.png │ │ │ ├── appicon_80.png │ │ │ └── appicon_87.png │ │ └── Contents.json │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ └── Sources │ ├── AppDelegate.swift │ ├── Channel │ ├── GroupChannelViewController+EditMessage.swift │ ├── GroupChannelViewController+FileMessage.swift │ ├── GroupChannelViewController+Setting.swift │ └── GroupChannelViewController.swift │ ├── ChannelList │ └── GroupChannelListViewController.swift │ ├── CreateChannel │ └── CreateGroupChannelViewController.swift │ ├── MemberList │ └── GroupChannelMemberListViewController.swift │ ├── Setting │ └── SettingViewController.swift │ ├── UseCase │ └── iOSTrueUseCase.swift │ └── ViewController.swift ├── LICENSE ├── Modules ├── CommonModule │ ├── Project.swift │ ├── Resources │ │ └── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── img_btn_resend.imageset │ │ │ ├── Contents.json │ │ │ └── btnResend.pdf │ │ │ ├── img_btn_send_file_msg_normal.imageset │ │ │ ├── Contents.json │ │ │ └── iconAdd.pdf │ │ │ ├── img_btn_send_file_msg_pressed.imageset │ │ │ ├── Contents.json │ │ │ └── iconAddPressed.pdf │ │ │ ├── img_btn_send_user_msg_normal.imageset │ │ │ ├── Contents.json │ │ │ └── iconSendNor.pdf │ │ │ ├── img_btn_send_user_msg_pressed.imageset │ │ │ ├── Contents.json │ │ │ └── iconSendActive.pdf │ │ │ ├── img_default_profile_image_1.imageset │ │ │ ├── Contents.json │ │ │ └── iconProfile01.pdf │ │ │ ├── img_default_profile_image_2.imageset │ │ │ ├── Contents.json │ │ │ └── iconProfile02.pdf │ │ │ ├── img_default_profile_image_3.imageset │ │ │ ├── Contents.json │ │ │ └── iconProfile03.pdf │ │ │ ├── img_default_profile_image_4.imageset │ │ │ ├── Contents.json │ │ │ └── iconProfile04.pdf │ │ │ ├── img_icon_edit_camera.imageset │ │ │ ├── Contents.json │ │ │ ├── iconEditCamera.png │ │ │ ├── iconEditCamera@2x.png │ │ │ └── iconEditCamera@3x.png │ │ │ ├── img_icon_failure.imageset │ │ │ ├── Contents.json │ │ │ └── iconFail.pdf │ │ │ ├── img_icon_general_file.imageset │ │ │ ├── Contents.json │ │ │ └── iconDoc.pdf │ │ │ ├── img_icon_image_file_message_placeholder.imageset │ │ │ ├── Contents.json │ │ │ └── iconImagePlaceholder.pdf │ │ │ ├── img_icon_image_file_message_placeholder_outgoing.imageset │ │ │ ├── Contents.json │ │ │ └── iconImagePlaceholder.pdf │ │ │ ├── img_icon_nofi_off.imageset │ │ │ ├── Contents.json │ │ │ ├── iconNotiOff.jpg │ │ │ ├── iconNotiOff@2x.jpg │ │ │ └── iconNotiOff@3x.jpg │ │ │ ├── img_icon_read.imageset │ │ │ ├── Contents.json │ │ │ └── iconRead.pdf │ │ │ ├── img_list_checked.imageset │ │ │ ├── Contents.json │ │ │ ├── listChecked.png │ │ │ ├── listChecked@2x.png │ │ │ └── listChecked@3x.png │ │ │ ├── img_list_unchecked.imageset │ │ │ ├── Contents.json │ │ │ ├── listUnselected.png │ │ │ ├── listUnselected@2x.png │ │ │ └── listUnselected@3x.png │ │ │ └── logoSendbird.imageset │ │ │ ├── Contents.json │ │ │ ├── logoSendbird.png │ │ │ ├── logoSendbird@2x.png │ │ │ └── logoSendbird@3x.png │ └── Sources │ │ ├── BaseModule.docc │ │ └── BaseModule.md │ │ ├── BaseModule.h │ │ ├── UseCase │ │ ├── EnvironmentUseCase.swift │ │ ├── GroupChannel │ │ │ ├── GroupChannelFileMessageUseCase.swift │ │ │ ├── GroupChannelMemberListUseCase.swift │ │ │ ├── GroupChannelMessageListUseCase.swift │ │ │ ├── GroupChannelSettingUseCase.swift │ │ │ ├── GroupChannelUserMessageUseCase.swift │ │ │ └── GroupChannelUserSelectionUseCase.swift │ │ ├── GroupChannelList │ │ │ ├── CreateGroupChannelUseCase.swift │ │ │ └── GroupChannelListUseCase.swift │ │ ├── OpenChannel │ │ │ ├── OpenChannelFileMessageUseCase.swift │ │ │ ├── OpenChannelMessageListUseCase.swift │ │ │ ├── OpenChannelParticipantListUseCase.swift │ │ │ ├── OpenChannelSettingUseCase.swift │ │ │ └── OpenChannelUserMessageUseCase.swift │ │ ├── OpenChannelList │ │ │ ├── CreateOpenChannelUseCase.swift │ │ │ └── OpenChannelListUseCase.swift │ │ └── User │ │ │ └── UserConnectionUseCase.swift │ │ ├── Util │ │ ├── BaseAppearance.swift │ │ ├── Date+Extension.swift │ │ ├── ImagePickerRouter.swift │ │ ├── KeyboardObserver.swift │ │ ├── NibLoadable.swift │ │ ├── TimestampStorage.swift │ │ ├── UIColor+Extension.swift │ │ ├── UIImage+Extension.swift │ │ ├── UITableView+Extension.swift │ │ ├── UIViewController+Extension.swift │ │ └── UserDefault.swift │ │ └── View │ │ ├── Channel │ │ └── ProfileEditView.swift │ │ ├── GroupChannel │ │ ├── GroupChannelListCell.swift │ │ └── User │ │ │ ├── BasicChannelMemberCell.swift │ │ │ ├── SelectableUserTableViewCell.swift │ │ │ ├── SelectableUserTableViewCell.xib │ │ │ └── SelectedUserCollectionViewCell.xib │ │ ├── Message │ │ ├── BasicFileCell.swift │ │ ├── BasicMessageCell.swift │ │ └── MessageSendingStatus.swift │ │ ├── MessageInput │ │ ├── MessageInputView.swift │ │ └── MessageInputView.xib │ │ ├── User │ │ ├── Login │ │ │ ├── LoginViewController.swift │ │ │ └── LoginViewController.xib │ │ └── Profile │ │ │ ├── ProfileEditView.xib │ │ │ ├── ProfileEditViewController.swift │ │ │ ├── ProfileEditViewController.xib │ │ │ └── ProfileImageView.swift │ │ └── UserSelection │ │ ├── UserSelectionViewController.swift │ │ └── UserSelectionViewController.xib └── Internal │ └── SendbirdChat-Debug │ ├── Project.swift │ └── README.md ├── README.md ├── Tuist ├── Config.swift ├── Dependencies.swift └── ProjectDescriptionHelpers │ └── Project+Templates.swift ├── Workspace.swift └── catalog-info.yaml /.github/workflows/tuist-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/.github/workflows/tuist-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.tuist-version: -------------------------------------------------------------------------------- 1 | 3.17.0 -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Sources/AddExtraDataToMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Sources/AddExtraDataToMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Sources/Channel/AddExtraDataMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Sources/Channel/AddExtraDataMessageCell.swift -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/AddExtraDataMessageOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddExtraDataMessageOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Sources/MemberList/GroupChannelMemberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Sources/MemberList/GroupChannelMemberCell.swift -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Sources/UseCase/AddRemoveOperatorUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Sources/UseCase/AddRemoveOperatorUseCase.swift -------------------------------------------------------------------------------- /Apps/AddRemoveOperatorsGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddRemoveOperatorsGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Sources/UseCase/AddStructuredDataUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Sources/UseCase/AddStructuredDataUseCase.swift -------------------------------------------------------------------------------- /Apps/AddStructuredDataMessageOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/AddStructuredDataMessageOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/MemberList/GroupChannelMemberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/MemberList/GroupChannelMemberCell.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/UseCase/BanAndUnBanUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/UseCase/BanAndUnBanUseCase.swift -------------------------------------------------------------------------------- /Apps/BanUnBanUserGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BanUnBanUserGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_100.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024-1.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_114.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_120.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_128.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_144.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_152.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_167.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_180.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_256.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_512.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController+EditMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController+EditMessage.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController+FileMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController+FileMessage.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/CreateChannel/CreateGroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/CreateChannel/CreateGroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/MemberList/GroupChannelMemberListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/MemberList/GroupChannelMemberListViewController.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/BasicGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_100.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024-1.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_114.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_120.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_128.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_144.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_152.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_167.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_180.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_256.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_512.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController+EditMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController+EditMessage.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController+FileMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController+FileMessage.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/ChannelList/OpenChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/ChannelList/OpenChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/CreateChannel/CreateOpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/CreateChannel/CreateOpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/BasicOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/BasicOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Sources/Channel/CategorizeUserMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Sources/Channel/CategorizeUserMessageCell.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Sources/UseCase/CategorizeMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Sources/UseCase/CategorizeMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Sources/Channel/CategorizeUserMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Sources/Channel/CategorizeUserMessageCell.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Sources/UseCase/CategorizeMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Sources/UseCase/CategorizeMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/CategorizeMessageOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeMessageOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/CategorizeWithCustomTypeOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CategorizeWithCustomTypeOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/ChannelList/GroupChannelTypeListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/ChannelList/GroupChannelTypeListCell.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/UseCase/CreateGroupChannelWithTypeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/UseCase/CreateGroupChannelWithTypeUseCase.swift -------------------------------------------------------------------------------- /Apps/ChannelTypesGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ChannelTypesGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController+EditMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController+EditMessage.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController+FileMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController+FileMessage.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/ChannelList/OpenChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/ChannelList/OpenChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/CreateChannel/CreateOpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/CreateChannel/CreateOpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/UseCase/CopyMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/UseCase/CopyMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/CopyMessageOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/CopyMessageOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Sources/Channel/OpenChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Sources/Channel/OpenChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Sources/ChannelList/OpenChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Sources/ChannelList/OpenChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Sources/UseCase/DeleteMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Sources/UseCase/DeleteMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/DeleteMessageOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/DeleteMessageOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Sources/Channel/GroupChannelViewController+Freeze.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Sources/Channel/GroupChannelViewController+Freeze.swift -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/FreezeUnFreezeGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/FreezeUnFreezeGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/GenerateThumbnailForFileOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/GenerateThumbnailForFileOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/GenerateThumbnailForFileOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/GenerateThumbnailForFileOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/GenerateThumbnailForFileOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/GenerateThumbnailForFileOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/GenerateThumbnailForFileOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/GenerateThumbnailForFileOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/GenerateThumbnailForFileOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/GenerateThumbnailForFileOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/GenerateThumbnailForFileOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/GenerateThumbnailForFileOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/GenerateThumbnailForFileOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/GenerateThumbnailForFileOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/UseCase/HideArchiveChannelListUsecase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/UseCase/HideArchiveChannelListUsecase.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/UseCase/HideArchiveChannelUsecase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/UseCase/HideArchiveChannelUsecase.swift -------------------------------------------------------------------------------- /Apps/HideOrArchiveGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/HideOrArchiveGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Sources/UseCase/LocalCachingMessageListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Sources/UseCase/LocalCachingMessageListUseCase.swift -------------------------------------------------------------------------------- /Apps/LocalCachingGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/LocalCachingGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Sources/UseCase/MarkAsReadUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Sources/UseCase/MarkAsReadUseCase.swift -------------------------------------------------------------------------------- /Apps/MarkAsReadGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MarkAsReadGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Sources/UseCase/MembersReadMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Sources/UseCase/MembersReadMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/MembersReadMessageGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersReadMessageGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MembersUnReadMessageGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersUnReadMessageGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MembersUnReadMessageGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersUnReadMessageGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MembersUnReadMessageGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersUnReadMessageGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MembersUnReadMessageGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersUnReadMessageGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MembersUnReadMessageGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersUnReadMessageGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MembersUnReadMessageGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersUnReadMessageGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MembersUnReadMessageGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MembersUnReadMessageGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Sources/Channel/MentionedUserMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Sources/Channel/MentionedUserMessageCell.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MentionUsersInMessageOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MentionUsersInMessageOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Sources/Channel/MesageThreadCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Sources/Channel/MesageThreadCell.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Sources/UseCase/ReplyToMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Sources/UseCase/ReplyToMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Sources/Channel/MesageThreadCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Sources/Channel/MesageThreadCell.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Sources/UseCase/ReplyToMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Sources/UseCase/ReplyToMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/MessageThreadingOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageThreadingOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MessageUndeliveredCountGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageUndeliveredCountGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MessageUndeliveredCountGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageUndeliveredCountGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MessageUndeliveredCountGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageUndeliveredCountGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MessageUndeliveredCountGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageUndeliveredCountGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MessageUndeliveredCountGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageUndeliveredCountGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MessageUndeliveredCountGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageUndeliveredCountGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MessageUndeliveredCountGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MessageUndeliveredCountGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Sources/Channel/AddExtraDataMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Sources/Channel/AddExtraDataMessageCell.swift -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Sources/MetaDataCounterUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Sources/MetaDataCounterUseCase.swift -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MetaDataCounterOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MetaDataCounterOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Sources/MemberList/GroupChannelMemberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Sources/MemberList/GroupChannelMemberCell.swift -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Sources/UseCase/MuteAndUnmuteUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Sources/UseCase/MuteAndUnmuteUseCase.swift -------------------------------------------------------------------------------- /Apps/MuteAndUnMuteUsersGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MuteAndUnMuteUsersGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/MutedAndBannedUsersListGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MutedAndBannedUsersListGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/MutedAndBannedUsersListGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MutedAndBannedUsersListGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/MutedAndBannedUsersListGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MutedAndBannedUsersListGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/MutedAndBannedUsersListGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MutedAndBannedUsersListGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/MutedAndBannedUsersListGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MutedAndBannedUsersListGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/MutedAndBannedUsersListGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MutedAndBannedUsersListGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/MutedAndBannedUsersListGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/MutedAndBannedUsersListGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Sources/Channel/OGMetaDataMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Sources/Channel/OGMetaDataMessageCell.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Sources/Channel/OGMetaDataMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Sources/Channel/OGMetaDataMessageCell.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/OpenGraphTagsOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OpenGraphTagsOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Sources/UseCase/GroupChannelOperatorListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Sources/UseCase/GroupChannelOperatorListUseCase.swift -------------------------------------------------------------------------------- /Apps/OperatorsListGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OperatorsListGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/OrderedMembersOperatorsGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OrderedMembersOperatorsGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/OrderedMembersOperatorsGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OrderedMembersOperatorsGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/OrderedMembersOperatorsGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OrderedMembersOperatorsGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/OrderedMembersOperatorsGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OrderedMembersOperatorsGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/OrderedMembersOperatorsGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OrderedMembersOperatorsGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/OrderedMembersOperatorsGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OrderedMembersOperatorsGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/OrderedMembersOperatorsGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/OrderedMembersOperatorsGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/Channel/PinMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/Channel/PinMessageCell.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/UseCase/PinUnpinMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/UseCase/PinUnpinMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/PinMessageGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PinMessageGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_100.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_1024.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_114.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_120.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_128.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_144.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_152.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_167.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_180.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_256.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_512.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+EditMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+EditMessage.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+FileMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+FileMessage.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+PollCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+PollCell.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+PollEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+PollEvents.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/PollCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/PollCell.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Channel/PollOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Channel/PollOptionView.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/CreateChannel/CreateGroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/CreateChannel/CreateGroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/MemberList/GroupChannelMemberListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/MemberList/GroupChannelMemberListViewController.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Poll/CreatePollOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Poll/CreatePollOptionView.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Poll/CreatePollViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Poll/CreatePollViewController.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Poll/TimePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Poll/TimePicker.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/UseCase/PollUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/UseCase/PollUseCase.swift -------------------------------------------------------------------------------- /Apps/PollsGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PollsGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/PushNotificationsGroupChannel.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/PushNotificationsGroupChannel.entitlements -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Sources/UseCase/PushNotificationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Sources/UseCase/PushNotificationUseCase.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsTranslationGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsTranslationGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsTranslationGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsTranslationGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/PushNotificationsTranslationGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsTranslationGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/PushNotificationsTranslationGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsTranslationGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsTranslationGroupChannel/Sources/UserLoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsTranslationGroupChannel/Sources/UserLoginViewController.swift -------------------------------------------------------------------------------- /Apps/PushNotificationsTranslationGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/PushNotificationsTranslationGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Sources/Channel/ReactToMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Sources/Channel/ReactToMessageCell.swift -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Sources/UseCase/ReactToMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Sources/UseCase/ReactToMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/ReactToMessageGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReactToMessageGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Sources/UseCase/ReportMessageUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Sources/UseCase/ReportMessageUserUseCase.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Sources/UseCase/ReportMessageUserUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Sources/UseCase/ReportMessageUserUseCase.swift -------------------------------------------------------------------------------- /Apps/ReportMessageUserOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ReportMessageUserOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Sources/Channel/ScheduledMessageInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Sources/Channel/ScheduledMessageInputView.swift -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Sources/UseCase/ScheduleMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Sources/UseCase/ScheduleMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/ScheduledMessagesGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/ScheduledMessagesGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Resources/Sample_Sendbird.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Resources/Sample_Sendbird.pdf -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/SendVariousTypesOfFileOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/SendVariousTypesOfFileOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/TrackFileUploadAndCancelGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TrackFileUploadAndCancelGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/TrackFileUploadAndCancelGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TrackFileUploadAndCancelGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/TrackFileUploadAndCancelGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TrackFileUploadAndCancelGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/TrackFileUploadAndCancelGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TrackFileUploadAndCancelGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/TrackFileUploadAndCancelGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TrackFileUploadAndCancelGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/TrackFileUploadAndCancelGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TrackFileUploadAndCancelGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/TypingIndicatorGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/TypingIndicatorGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/UpdateDeleteMessageGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateDeleteMessageGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/UpdateDeleteMessageGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateDeleteMessageGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/UpdateDeleteMessageGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateDeleteMessageGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/UpdateDeleteMessageGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateDeleteMessageGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/UpdateDeleteMessageGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateDeleteMessageGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/UpdateDeleteMessageGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateDeleteMessageGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/UpdateDeleteMessageGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateDeleteMessageGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Project.swift -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Sources/Channel/OpenChannelViewController.swift -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Sources/UpdateMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Sources/UpdateMessageUseCase.swift -------------------------------------------------------------------------------- /Apps/UpdateMessageOpenChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UpdateMessageOpenChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Project.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/PushNotificationsGroupChannel.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/PushNotificationsGroupChannel.entitlements -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/UseCase/PushNotificationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/UseCase/PushNotificationUseCase.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/UseCase/UserDNDSnoozeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/UseCase/UserDNDSnoozeUseCase.swift -------------------------------------------------------------------------------- /Apps/UserDoNotDisturbSnooze/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserDoNotDisturbSnooze/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Project.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/UseCase/UserNicknameAndPictureUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/UseCase/UserNicknameAndPictureUseCase.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/UserLoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/UserLoginViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/UserProfileEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/UserProfileEditViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/Sources/ViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/User/UserLoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/User/UserLoginViewController.swift -------------------------------------------------------------------------------- /Apps/UserNickNameAndPicture/User/UserProfileEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/UserNickNameAndPicture/User/UserProfileEditViewController.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Project.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_50.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_57.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_58.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_60.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_64.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_72.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_76.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_80.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/AppIcon.appiconset/appicon_87.png -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Resources/Main.storyboard -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Sources/Channel/GroupChannelViewController+Setting.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Sources/Channel/GroupChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Sources/Channel/GroupChannelViewController.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Sources/ChannelList/GroupChannelListViewController.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Sources/Setting/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Sources/Setting/SettingViewController.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Sources/UseCase/iOSTrueUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Sources/UseCase/iOSTrueUseCase.swift -------------------------------------------------------------------------------- /Apps/iOSTrueGroupChannel/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Apps/iOSTrueGroupChannel/Sources/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/CommonModule/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Project.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Modules/CommonModule/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/CommonModule/Resources/Assets.xcassets/img_btn_resend.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Resources/Assets.xcassets/img_btn_resend.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/CommonModule/Resources/Assets.xcassets/img_btn_resend.imageset/btnResend.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Resources/Assets.xcassets/img_btn_resend.imageset/btnResend.pdf -------------------------------------------------------------------------------- /Modules/CommonModule/Resources/Assets.xcassets/img_icon_read.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Resources/Assets.xcassets/img_icon_read.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/CommonModule/Resources/Assets.xcassets/img_icon_read.imageset/iconRead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Resources/Assets.xcassets/img_icon_read.imageset/iconRead.pdf -------------------------------------------------------------------------------- /Modules/CommonModule/Resources/Assets.xcassets/logoSendbird.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Resources/Assets.xcassets/logoSendbird.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/BaseModule.docc/BaseModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/BaseModule.docc/BaseModule.md -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/BaseModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/BaseModule.h -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/EnvironmentUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/EnvironmentUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/GroupChannel/GroupChannelSettingUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/GroupChannel/GroupChannelSettingUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/GroupChannelList/GroupChannelListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/GroupChannelList/GroupChannelListUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelFileMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelFileMessageUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelMessageListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelMessageListUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelSettingUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelSettingUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelUserMessageUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/OpenChannel/OpenChannelUserMessageUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/OpenChannelList/CreateOpenChannelUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/OpenChannelList/CreateOpenChannelUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/OpenChannelList/OpenChannelListUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/OpenChannelList/OpenChannelListUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/UseCase/User/UserConnectionUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/UseCase/User/UserConnectionUseCase.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/BaseAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/BaseAppearance.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/Date+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/Date+Extension.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/ImagePickerRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/ImagePickerRouter.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/KeyboardObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/KeyboardObserver.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/NibLoadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/NibLoadable.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/TimestampStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/TimestampStorage.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/UIColor+Extension.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/UIImage+Extension.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/UITableView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/UITableView+Extension.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/UIViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/UIViewController+Extension.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/Util/UserDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/Util/UserDefault.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/Channel/ProfileEditView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/Channel/ProfileEditView.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/GroupChannel/GroupChannelListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/GroupChannel/GroupChannelListCell.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/GroupChannel/User/BasicChannelMemberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/GroupChannel/User/BasicChannelMemberCell.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/GroupChannel/User/SelectableUserTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/GroupChannel/User/SelectableUserTableViewCell.xib -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/Message/BasicFileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/Message/BasicFileCell.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/Message/BasicMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/Message/BasicMessageCell.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/Message/MessageSendingStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/Message/MessageSendingStatus.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/MessageInput/MessageInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/MessageInput/MessageInputView.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/MessageInput/MessageInputView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/MessageInput/MessageInputView.xib -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/User/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/User/Login/LoginViewController.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/User/Login/LoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/User/Login/LoginViewController.xib -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/User/Profile/ProfileEditView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/User/Profile/ProfileEditView.xib -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/User/Profile/ProfileEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/User/Profile/ProfileEditViewController.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/User/Profile/ProfileEditViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/User/Profile/ProfileEditViewController.xib -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/User/Profile/ProfileImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/User/Profile/ProfileImageView.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/UserSelection/UserSelectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/UserSelection/UserSelectionViewController.swift -------------------------------------------------------------------------------- /Modules/CommonModule/Sources/View/UserSelection/UserSelectionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/CommonModule/Sources/View/UserSelection/UserSelectionViewController.xib -------------------------------------------------------------------------------- /Modules/Internal/SendbirdChat-Debug/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/Internal/SendbirdChat-Debug/Project.swift -------------------------------------------------------------------------------- /Modules/Internal/SendbirdChat-Debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Modules/Internal/SendbirdChat-Debug/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/README.md -------------------------------------------------------------------------------- /Tuist/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Tuist/Config.swift -------------------------------------------------------------------------------- /Tuist/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Tuist/Dependencies.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Project+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Tuist/ProjectDescriptionHelpers/Project+Templates.swift -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/Workspace.swift -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-chat-sample-ios/HEAD/catalog-info.yaml --------------------------------------------------------------------------------