├── .gitignore ├── DeliveryReceiptNotificationService ├── DeliveryReceiptNotificationService.entitlements ├── Info.plist └── NotificationService.swift ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── AlamofireImage │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFIError.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageFilter.swift │ │ ├── Request+AlamofireImage.swift │ │ ├── UIButton+AlamofireImage.swift │ │ ├── UIImage+AlamofireImage.swift │ │ └── UIImageView+AlamofireImage.swift ├── FLAnimatedImage │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage.m │ │ └── FLAnimatedImageView.m │ ├── LICENSE │ └── README.md ├── Manifest.lock ├── NYTPhotoViewer │ ├── LICENSE.md │ ├── Pod │ │ ├── Assets │ │ │ └── ios │ │ │ │ ├── NYTPhotoViewerCloseButtonX.png │ │ │ │ ├── NYTPhotoViewerCloseButtonX@2x.png │ │ │ │ ├── NYTPhotoViewerCloseButtonX@3x.png │ │ │ │ ├── NYTPhotoViewerCloseButtonXLandscape.png │ │ │ │ ├── NYTPhotoViewerCloseButtonXLandscape@2x.png │ │ │ │ └── NYTPhotoViewerCloseButtonXLandscape@3x.png │ │ └── Classes │ │ │ └── ios │ │ │ ├── NYTPhotoCaptionView.h │ │ │ ├── NYTPhotoCaptionView.m │ │ │ ├── NYTPhotoDismissalInteractionController.h │ │ │ ├── NYTPhotoDismissalInteractionController.m │ │ │ ├── NYTPhotoTransitionAnimator.h │ │ │ ├── NYTPhotoTransitionAnimator.m │ │ │ ├── NYTPhotoTransitionController.h │ │ │ ├── NYTPhotoTransitionController.m │ │ │ ├── NYTPhotoViewController.h │ │ │ ├── NYTPhotoViewController.m │ │ │ ├── NYTPhotosDataSource.h │ │ │ ├── NYTPhotosDataSource.m │ │ │ ├── NYTPhotosOverlayView.h │ │ │ ├── NYTPhotosOverlayView.m │ │ │ ├── NYTPhotosViewController.h │ │ │ ├── NYTPhotosViewController.m │ │ │ ├── NYTScalingImageView.h │ │ │ ├── NYTScalingImageView.m │ │ │ ├── Protocols │ │ │ ├── NYTPhoto.h │ │ │ ├── NYTPhotoCaptionViewLayoutWidthHinting.h │ │ │ ├── NYTPhotoContainer.h │ │ │ └── NYTPhotosViewControllerDataSource.h │ │ │ └── Resource Loading │ │ │ ├── NSBundle+NYTPhotoViewer.h │ │ │ └── NSBundle+NYTPhotoViewer.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── RSKImageCropper │ ├── LICENSE │ ├── README.md │ └── RSKImageCropper │ │ ├── CGGeometry+RSKImageCropper.h │ │ ├── CGGeometry+RSKImageCropper.m │ │ ├── RSKImageCropViewController+Protected.h │ │ ├── RSKImageCropViewController.h │ │ ├── RSKImageCropViewController.m │ │ ├── RSKImageCropper.h │ │ ├── RSKImageCropper.modulemap │ │ ├── RSKImageCropperStrings.bundle │ │ ├── ar.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── bg.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── bs.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ca.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── cs.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── da.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── de.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── el.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── en.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── es.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── et.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── fi.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── fil.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── fr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── he.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── hi.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── hr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── hu.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── id.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── it.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ja.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ko.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── lt.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── lv.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── mk.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ms.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── nb.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── nl.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pl.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pt.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pt_BR.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pt_PT.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ro.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ru.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sk.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sl.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sv.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── th.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── tr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── uk.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── vi.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── zh-Hans.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── zh-Hant.lproj │ │ │ └── RSKImageCropper.strings │ │ └── zh.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── RSKImageScrollView.h │ │ ├── RSKImageScrollView.m │ │ ├── RSKInternalUtility.h │ │ ├── RSKInternalUtility.m │ │ ├── RSKTouchView.h │ │ ├── RSKTouchView.m │ │ ├── UIImage+RSKImageCropper.h │ │ └── UIImage+RSKImageCropper.m ├── SendBirdSDK │ ├── LICENSE.md │ └── README.md └── Target Support Files │ ├── Alamofire │ ├── Alamofire-Info.plist │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ └── Alamofire.modulemap │ ├── AlamofireImage │ ├── AlamofireImage-Info.plist │ ├── AlamofireImage-dummy.m │ ├── AlamofireImage-prefix.pch │ ├── AlamofireImage-umbrella.h │ └── AlamofireImage.modulemap │ ├── FLAnimatedImage │ ├── FLAnimatedImage-Info.plist │ ├── FLAnimatedImage-dummy.m │ ├── FLAnimatedImage-prefix.pch │ ├── FLAnimatedImage-umbrella.h │ └── FLAnimatedImage.modulemap │ ├── NYTPhotoViewer │ ├── NYTPhotoViewer-Info.plist │ ├── NYTPhotoViewer-dummy.m │ ├── NYTPhotoViewer-prefix.pch │ ├── NYTPhotoViewer-umbrella.h │ ├── NYTPhotoViewer.modulemap │ └── ResourceBundle-NYTPhotoViewer-NYTPhotoViewer-Info.plist │ ├── Pods-SendBird-iOS │ ├── Pods-SendBird-iOS-Info.plist │ ├── Pods-SendBird-iOS-acknowledgements.markdown │ ├── Pods-SendBird-iOS-acknowledgements.plist │ ├── Pods-SendBird-iOS-dummy.m │ ├── Pods-SendBird-iOS-frameworks-Debug-input-files.xcfilelist │ ├── Pods-SendBird-iOS-frameworks-Debug-output-files.xcfilelist │ ├── Pods-SendBird-iOS-frameworks-Release-input-files.xcfilelist │ ├── Pods-SendBird-iOS-frameworks-Release-output-files.xcfilelist │ ├── Pods-SendBird-iOS-frameworks.sh │ ├── Pods-SendBird-iOS-umbrella.h │ ├── Pods-SendBird-iOS.debug.xcconfig │ ├── Pods-SendBird-iOS.modulemap │ └── Pods-SendBird-iOS.release.xcconfig │ └── RSKImageCropper │ ├── RSKImageCropper-Info.plist │ ├── RSKImageCropper-dummy.m │ ├── RSKImageCropper-prefix.pch │ └── RSKImageCropper.modulemap ├── README.md ├── SendBird-iOS.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── SendBird-iOS.xcscheme ├── SendBird-iOS.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── SendBird-iOS ├── AppDelegate.swift ├── 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 │ ├── bannedUsers.imageset │ │ ├── Contents.json │ │ ├── bannedUsers.png │ │ ├── bannedUsers@2x.png │ │ └── bannedUsers@3x.png │ ├── blockedMembers.imageset │ │ ├── Contents.json │ │ ├── blockedMembers.png │ │ ├── blockedMembers@2x.png │ │ └── blockedMembers@3x.png │ ├── btn_delete_user.imageset │ │ ├── Contents.json │ │ ├── btn_delete-2.png │ │ ├── btn_delete-3.png │ │ └── btn_delete.png │ ├── color_admin_message_bg.colorset │ │ └── Contents.json │ ├── color_admin_message_border.colorset │ │ └── Contents.json │ ├── color_admin_message_name.colorset │ │ └── Contents.json │ ├── color_admin_message_text.colorset │ │ └── Contents.json │ ├── color_bar_item.colorset │ │ └── Contents.json │ ├── color_channel_list_bg.colorset │ │ └── Contents.json │ ├── color_channel_settings_bg.colorset │ │ └── Contents.json │ ├── color_channelname_nickname_placeholder.colorset │ │ └── Contents.json │ ├── color_empty_list_label.colorset │ │ └── Contents.json │ ├── color_general_file_message_container_bg.colorset │ │ └── Contents.json │ ├── color_general_file_message_filename.colorset │ │ └── Contents.json │ ├── color_general_file_message_transfer_progress_text.colorset │ │ └── Contents.json │ ├── color_group_channel_divider.colorset │ │ └── Contents.json │ ├── color_group_channel_incoming_audio_filename.colorset │ │ └── Contents.json │ ├── color_group_channel_incoming_message_nickname_label.colorset │ │ └── Contents.json │ ├── color_group_channel_last_message_label.colorset │ │ └── Contents.json │ ├── color_group_channel_member_count_bg.colorset │ │ └── Contents.json │ ├── color_group_channel_member_count_label.colorset │ │ └── Contents.json │ ├── color_group_channel_message_nickname.colorset │ │ └── Contents.json │ ├── color_group_channel_message_text.colorset │ │ └── Contents.json │ ├── color_group_channel_name_label.colorset │ │ └── Contents.json │ ├── color_group_channel_outgoing_message_bg.colorset │ │ └── Contents.json │ ├── color_group_channel_unread_count_bg.colorset │ │ └── Contents.json │ ├── color_group_channel_updated_at_label.colorset │ │ └── Contents.json │ ├── color_hide_group_channel_bg.colorset │ │ └── Contents.json │ ├── color_image_file_massage_bg.colorset │ │ └── Contents.json │ ├── color_leave_group_channel_bg.colorset │ │ └── Contents.json │ ├── color_message_input_textfield_border.colorset │ │ └── Contents.json │ ├── color_message_input_textfiled_bg.colorset │ │ └── Contents.json │ ├── color_message_input_view_top_border.colorset │ │ └── Contents.json │ ├── color_message_sending_fail.colorset │ │ └── Contents.json │ ├── color_navigation_tint.colorset │ │ └── Contents.json │ ├── color_online_state_label.colorset │ │ └── Contents.json │ ├── color_open_channel_admin_message_text.colorset │ │ └── Contents.json │ ├── color_open_channel_file_message_text.colorset │ │ └── Contents.json │ ├── color_open_channel_list_divider.colorset │ │ └── Contents.json │ ├── color_open_channel_message_nickname.colorset │ │ └── Contents.json │ ├── color_open_channel_name_label.colorset │ │ └── Contents.json │ ├── color_open_channel_participants_count_label.colorset │ │ └── Contents.json │ ├── color_open_channel_settings_border.colorset │ │ └── Contents.json │ ├── color_open_channel_settings_count_label.colorset │ │ └── Contents.json │ ├── color_open_channel_settings_user_list_divider.colorset │ │ └── Contents.json │ ├── color_profile_last_updated_label.colorset │ │ └── Contents.json │ ├── color_profile_nickname.colorset │ │ └── Contents.json │ ├── color_settings_border.colorset │ │ └── Contents.json │ ├── color_settings_description_label.colorset │ │ └── Contents.json │ ├── color_settings_menu_add_operator.colorset │ │ └── Contents.json │ ├── color_settings_nickname_label.colorset │ │ └── Contents.json │ ├── color_settings_section_label.colorset │ │ └── Contents.json │ ├── color_settings_time_label_highlighted.colorset │ │ └── Contents.json │ ├── color_settings_time_label_normal.colorset │ │ └── Contents.json │ ├── color_toast_bg.colorset │ │ └── Contents.json │ ├── color_toast_label.colorset │ │ └── Contents.json │ ├── color_user_list_divider.colorset │ │ └── Contents.json │ ├── color_user_message_name.colorset │ │ └── Contents.json │ ├── color_user_message_text.colorset │ │ └── Contents.json │ ├── doNotDisturb.imageset │ │ ├── Contents.json │ │ ├── doNotDisturb.png │ │ ├── doNotDisturb@2x.png │ │ └── doNotDisturb@3x.png │ ├── img_audio_wave.imageset │ │ ├── Contents.json │ │ └── imgAudio.pdf │ ├── img_audio_wave_outgoing.imageset │ │ ├── Contents.json │ │ └── imgAudio.pdf │ ├── img_blocked_user_cover.imageset │ │ ├── Contents.json │ │ └── imgBlockedUser.pdf │ ├── img_btn_add_operator.imageset │ │ ├── Contents.json │ │ ├── btnAddOperator.png │ │ ├── btnAddOperator@2x.png │ │ └── btnAddOperator@3x.png │ ├── img_btn_channel_settings.imageset │ │ ├── Contents.json │ │ └── iconList.pdf │ ├── img_btn_close_white.imageset │ │ ├── Contents.json │ │ └── icnExit.pdf │ ├── img_btn_create_group_channel.imageset │ │ ├── Contents.json │ │ └── iconCreateGroup.pdf │ ├── img_btn_create_group_channel_blue.imageset │ │ ├── Contents.json │ │ ├── blue.png │ │ ├── blue@2x.png │ │ └── blue@3x.png │ ├── img_btn_create_open_channel.imageset │ │ ├── Contents.json │ │ └── iconCreateOpen.pdf │ ├── img_btn_create_public_group_channel_blue.imageset │ │ ├── Contents.json │ │ ├── createPublicGroupChannel.png │ │ ├── createPublicGroupChannel@2x.png │ │ └── createPublicGroupChannel@3x.png │ ├── img_btn_edit_channel_name.imageset │ │ ├── Contents.json │ │ └── btnEditProfile.pdf │ ├── 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_cover_image_placeholder_1.imageset │ │ ├── Contents.json │ │ └── iconChannelcover01.pdf │ ├── img_cover_image_placeholder_2.imageset │ │ ├── Contents.json │ │ └── iconChannelcover02.pdf │ ├── img_cover_image_placeholder_3.imageset │ │ ├── Contents.json │ │ └── iconChannelcover03.pdf │ ├── img_default_cover_image_1.imageset │ │ ├── Contents.json │ │ └── group.png │ ├── img_default_cover_image_2.imageset │ │ ├── Contents.json │ │ └── group2.png │ ├── img_default_cover_image_3.imageset │ │ ├── Contents.json │ │ └── group3.png │ ├── img_default_cover_image_4.imageset │ │ ├── Contents.json │ │ └── group4.png │ ├── img_default_cover_image_5.imageset │ │ ├── Contents.json │ │ └── group5.png │ ├── 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_add_operator.imageset │ │ ├── Contents.json │ │ └── iconAdd.pdf │ ├── img_icon_ban.imageset │ │ ├── Contents.json │ │ └── iconBan.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_mute.imageset │ │ ├── Contents.json │ │ └── iconMute.pdf │ ├── img_icon_nofi_off.imageset │ │ ├── Contents.json │ │ ├── iconNotiOff.jpg │ │ ├── iconNotiOff@2x.jpg │ │ └── iconNotiOff@3x.jpg │ ├── img_icon_notification_setting.imageset │ │ ├── Contents.json │ │ └── iconNoti.pdf │ ├── img_icon_operator.imageset │ │ ├── Contents.json │ │ └── iconOperator.pdf │ ├── img_icon_participant.imageset │ │ ├── Contents.json │ │ └── iconParticipant.pdf │ ├── img_icon_play_audio.imageset │ │ ├── Contents.json │ │ └── iconAudioPlay.pdf │ ├── img_icon_play_audio_outgoing.imageset │ │ ├── Contents.json │ │ └── iconAudioPlay.pdf │ ├── img_icon_read.imageset │ │ ├── Contents.json │ │ └── iconRead.pdf │ ├── img_icon_video.imageset │ │ ├── Contents.json │ │ └── iconVideo.pdf │ ├── img_icon_video_file_placeholder.imageset │ │ ├── Contents.json │ │ └── icVideoThumbnail.pdf │ ├── img_icon_video_file_placeholder_outgoing.imageset │ │ ├── Contents.json │ │ └── icVideoThumbnail.pdf │ ├── img_iicon_invite_member.imageset │ │ ├── Contents.json │ │ └── iconInvite.pdf │ ├── img_incoming_sending_flag.imageset │ │ ├── Contents.json │ │ └── path11Copy2.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 │ ├── img_loading_indicator.imageset │ │ ├── Contents.json │ │ ├── icLoading.png │ │ ├── icLoading@2x.png │ │ └── icLoading@3x.png │ ├── img_loading_indicator_background.imageset │ │ ├── Contents.json │ │ ├── bgLoding.png │ │ ├── bgLoding@2x.png │ │ └── bgLoding@3x.png │ ├── img_offline.imageset │ │ ├── Contents.json │ │ ├── icOffiline.png │ │ ├── icOffiline@2x.png │ │ └── icOffiline@3x.png │ ├── img_online.imageset │ │ ├── Contents.json │ │ └── icOnline.pdf │ ├── img_outgoing_sending_flag.imageset │ │ ├── Contents.json │ │ └── path11Copy.pdf │ ├── img_sendbird_logo.imageset │ │ ├── Contents.json │ │ ├── logoImg.png │ │ ├── logoImg@2x.png │ │ └── logoImg@3x.png │ ├── img_sendbird_logo_text.imageset │ │ ├── Contents.json │ │ ├── logoText.png │ │ ├── logoText@2x.png │ │ └── logoText@3x.png │ ├── img_tab_group_channel_normal.imageset │ │ ├── Contents.json │ │ └── iconTabGroupchatDisable.pdf │ ├── img_tab_group_channel_selected.imageset │ │ ├── Contents.json │ │ └── iconTabGroupchatInable.pdf │ ├── img_tab_open_channel_normal.imageset │ │ ├── Contents.json │ │ └── iconTabOpenchatDisable.pdf │ ├── img_tab_open_channel_selected.imageset │ │ ├── Contents.json │ │ └── iconTabOpenchatInable.pdf │ ├── img_tab_settings_normal.imageset │ │ ├── Contents.json │ │ └── iconTabSettingsDisable.pdf │ ├── img_tab_settings_selected.imageset │ │ ├── Contents.json │ │ └── iconTabSettingsInable.pdf │ ├── img_toast_check.imageset │ │ ├── Contents.json │ │ └── icCheck.pdf │ ├── logoSb.imageset │ │ ├── Contents.json │ │ ├── logoSb.png │ │ ├── logoSb@2x.png │ │ └── logoSb@3x.png │ ├── logoSendbird.imageset │ │ ├── Contents.json │ │ ├── logoSendbird.png │ │ ├── logoSendbird@2x.png │ │ └── logoSendbird@3x.png │ └── logoSendbirdFull.imageset │ │ ├── Contents.json │ │ ├── logoSendbirdFull.png │ │ ├── logoSendbirdFull@2x.png │ │ └── logoSendbirdFull@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DownloadManager │ └── DownloadManager.swift ├── GroupChannel.storyboard ├── GroupChannel │ ├── CreateGroupChannel │ │ ├── CreateGroupChannelNavigationController.swift │ │ ├── CreateGroupChannelViewControllerA.swift │ │ ├── CreateGroupChannelViewControllerB.swift │ │ └── CreateGroupChannelViewControllerDelegate.swift │ ├── GroupChannelChat │ │ ├── GroupChannelChatViewController.swift │ │ └── ViewCells │ │ │ ├── GroupChannelIncomingAudioFileMessageTableViewCell.swift │ │ │ ├── GroupChannelIncomingAudioFileMessageTableViewCell.xib │ │ │ ├── GroupChannelIncomingGeneralFileMessageTableViewCell.swift │ │ │ ├── GroupChannelIncomingGeneralFileMessageTableViewCell.xib │ │ │ ├── GroupChannelIncomingImageVideoFileMessageTableViewCell.swift │ │ │ ├── GroupChannelIncomingImageVideoFileMessageTableViewCell.xib │ │ │ ├── GroupChannelIncomingMessageTableViewCell.swift │ │ │ ├── GroupChannelIncomingUserMessageTableViewCell.swift │ │ │ ├── GroupChannelIncomingUserMessageTableViewCell.xib │ │ │ ├── GroupChannelMessageTableViewCell.swift │ │ │ ├── GroupChannelMessageTableViewCellDelegate.swift │ │ │ ├── GroupChannelNeutralAdminMessageTableViewCell.swift │ │ │ ├── GroupChannelNeutralAdminMessageTableViewCell.xib │ │ │ ├── GroupChannelOutgoingAudioFileMessageTableViewCell.swift │ │ │ ├── GroupChannelOutgoingAudioFileMessageTableViewCell.xib │ │ │ ├── GroupChannelOutgoingGeneralFileMessageTableViewCell.swift │ │ │ ├── GroupChannelOutgoingGeneralFileMessageTableViewCell.xib │ │ │ ├── GroupChannelOutgoingImageVideoFileMessageTableViewCell.swift │ │ │ ├── GroupChannelOutgoingImageVideoFileMessageTableViewCell.xib │ │ │ ├── GroupChannelOutgoingMessageTableViewCell.swift │ │ │ ├── GroupChannelOutgoingUserMessageTableViewCell.swift │ │ │ └── GroupChannelOutgoingUserMessageTableViewCell.xib │ ├── GroupChannelSettings │ │ ├── GroupChannelCoverImageNameSettingDelegate.swift │ │ ├── GroupChannelCoverImageNameSettingViewController.swift │ │ ├── GroupChannelInviteMemberDelegate.swift │ │ ├── GroupChannelInviteMemberViewController.swift │ │ ├── GroupChannelSettingsDelegate.swift │ │ ├── GroupChannelSettingsViewController.swift │ │ └── ViewCells │ │ │ ├── GroupChannelSettingsChannelCoverNameTableViewCell.swift │ │ │ ├── GroupChannelSettingsMemberTableViewCell.swift │ │ │ ├── GroupChannelSettingsNotificationsTableViewCell.swift │ │ │ └── GroupChannelSettingsTableViewCellDelegate.swift │ ├── GroupChannels │ │ ├── GroupChannelsUpdateListDelegate.swift │ │ ├── GroupChannelsViewController.swift │ │ └── ViewCells │ │ │ └── GroupChannelTableViewCell.swift │ ├── GroupChannelsHidden │ │ ├── GroupChannelHiddenChannelTableViewCell.swift │ │ └── GroupChannelHiddenChannelsViewController.swift │ └── GroupChannelsPublic │ │ ├── GroupChannelPublicChannelTableViewCell.swift │ │ └── GroupChannelPublicChannelsViewController.swift ├── Images │ └── loading_typing.gif ├── Info.plist ├── Login │ ├── ConnectionManager.swift │ └── LoginViewController.swift ├── MainTabBarController.swift ├── Misc │ ├── Array+SendBird.swift │ ├── Constants.swift │ ├── CustomUI │ │ ├── CustomActivityIndicatorView.swift │ │ ├── CustomButton.swift │ │ ├── CustomProgressCircle.swift │ │ ├── CustomTextField.swift │ │ └── FLAnimatedImageView+ImageLoader.swift │ ├── ImageUtil.swift │ ├── NotificationDelegate.swift │ ├── PhotoViewer │ │ └── PhotoViewer.swift │ ├── PhotosViewerController │ │ └── CustomPhotosViewController.swift │ ├── String+SendBird.swift │ ├── Utils │ │ ├── UIViewController+Utils.swift │ │ └── Utils.swift │ └── WebViewController.swift ├── New Group │ └── loading_typing.gif ├── OpenChannel.storyboard ├── OpenChannel │ ├── CreateOpenChannel │ │ ├── CreateOpenChannelNavigationController.swift │ │ ├── CreateOpenChannelViewCell │ │ │ ├── CreateOpenChannelChannelUrlTableViewCell.swift │ │ │ ├── CreateOpenChannelCurrentUserTableViewCell.swift │ │ │ ├── CreateOpenChannelCurrentUserTableViewCell.xib │ │ │ └── CreateOpenChannelUserTableViewCell.swift │ │ ├── CreateOpenChannelViewControllerA.swift │ │ ├── CreateOpenChannelViewControllerB.swift │ │ ├── SelectOperatorsDelegate.swift │ │ └── SelectOperatorsViewController.swift │ ├── OpenChannelChat │ │ ├── OpenChannelChatViewController.swift │ │ └── ViewCells │ │ │ ├── OpenChannelAdminMessageTableViewCell.swift │ │ │ ├── OpenChannelAdminMessageTableViewCell.xib │ │ │ ├── OpenChannelAudioFileMessageTableViewCell.swift │ │ │ ├── OpenChannelAudioFileMessageTableViewCell.xib │ │ │ ├── OpenChannelGeneralFileMessageTableViewCell.swift │ │ │ ├── OpenChannelGeneralFileMessageTableViewCell.xib │ │ │ ├── OpenChannelImageVideoFileMessageTableViewCell.swift │ │ │ ├── OpenChannelImageVideoFileMessageTableViewCell.xib │ │ │ ├── OpenChannelMessageTableViewCell.swift │ │ │ ├── OpenChannelMessageTableViewCellDelegate.swift │ │ │ ├── OpenChannelUserMessageTableViewCell.swift │ │ │ └── OpenChannelUserMessageTableViewCell.xib │ ├── OpenChannelSettings │ │ ├── OpenChannelCoverImageNameSettingDelegate.swift │ │ ├── OpenChannelCoverImageNameSettingViewController.swift │ │ ├── OpenChannelSettingsDelegate.swift │ │ ├── OpenChannelSettingsUserList │ │ │ ├── OpenChannelMutedUserListViewController.swift │ │ │ └── ViewCells │ │ │ │ └── OpenChannelSettingsUserTableViewCell.swift │ │ ├── OpenChannelSettingsViewController.swift │ │ ├── OpenChannelUserListViewController.swift │ │ └── ViewCells │ │ │ ├── OpenChannelSettingsChannelNameTableViewCell.swift │ │ │ ├── OpenChannelSettingsChannelNameTableViewCellDelegate.swift │ │ │ ├── OpenChannelSettingsMenuTableViewCell.swift │ │ │ └── OpenChannelSettingsUserTableViewCell.swift │ └── OpenChannels │ │ ├── CreateOpenChannelDelegate.swift │ │ ├── OpenChanannelChatDelegate.swift │ │ ├── OpenChannelsViewController.swift │ │ └── ViewCells │ │ └── OpenChannelTableViewCell.swift ├── SceneDelegate.swift ├── SendBird-iOS.entitlements ├── Settings.storyboard ├── Settings │ ├── SettingsBlockedUserListViewController.swift │ ├── SettingsTableViewCellDelegate.swift │ ├── SettingsTimePickerDelegate.swift │ ├── SettingsTimeViewController.swift │ ├── SettingsViewController.swift │ ├── UpdateUserProfileViewController.swift │ ├── UserProfileImageNameSettingDelegate.swift │ └── ViewCells │ │ ├── BlockedUserTableViewCell.swift │ │ ├── SettingsSwitchTableViewCell.swift │ │ ├── SettingsTimePickerTableViewCell.swift │ │ └── SettingsTimeTableViewCell.swift ├── SplitViewController.swift ├── UserProfile │ ├── UserProfileViewController.swift │ └── UserProfileViewController.xib ├── ViewCells │ ├── SelectableUserTableViewCell.swift │ ├── SelectableUserTableViewCell.xib │ ├── SelectedUserCollectioViewCell.swift │ └── SelectedUserCollectionViewCell.xib └── ViewController.swift └── catalog-info.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /DeliveryReceiptNotificationService/DeliveryReceiptNotificationService.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/DeliveryReceiptNotificationService/DeliveryReceiptNotificationService.entitlements -------------------------------------------------------------------------------- /DeliveryReceiptNotificationService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/DeliveryReceiptNotificationService/Info.plist -------------------------------------------------------------------------------- /DeliveryReceiptNotificationService/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/DeliveryReceiptNotificationService/NotificationService.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/LICENSE -------------------------------------------------------------------------------- /Pods/AlamofireImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/README.md -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/AFIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/AFIError.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/Image.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/ImageCache.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/ImageFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/ImageFilter.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/Request+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/Request+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/FLAnimatedImage/LICENSE -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/FLAnimatedImage/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/LICENSE.md -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonX.png -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonX@2x.png -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonX@3x.png -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape.png -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape@2x.png -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Assets/ios/NYTPhotoViewerCloseButtonXLandscape@3x.png -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoCaptionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoCaptionView.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoCaptionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoCaptionView.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoDismissalInteractionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoDismissalInteractionController.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoDismissalInteractionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoDismissalInteractionController.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionAnimator.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionAnimator.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionController.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoTransitionController.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoViewController.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotoViewController.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosDataSource.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosDataSource.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosOverlayView.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosOverlayView.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosViewController.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTPhotosViewController.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTScalingImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTScalingImageView.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/NYTScalingImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/NYTScalingImageView.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhoto.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhotoCaptionViewLayoutWidthHinting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhotoCaptionViewLayoutWidthHinting.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhotoContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhotoContainer.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhotosViewControllerDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/Protocols/NYTPhotosViewControllerDataSource.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/Resource Loading/NSBundle+NYTPhotoViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/Resource Loading/NSBundle+NYTPhotoViewer.h -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/Pod/Classes/ios/Resource Loading/NSBundle+NYTPhotoViewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/Pod/Classes/ios/Resource Loading/NSBundle+NYTPhotoViewer.m -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/NYTPhotoViewer/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/RSKImageCropper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/LICENSE -------------------------------------------------------------------------------- /Pods/RSKImageCropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/README.md -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.m -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController+Protected.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.m -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.modulemap -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ar.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ar.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bg.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bg.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bs.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bs.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ca.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ca.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/cs.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/cs.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/da.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/da.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/de.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/de.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/el.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/el.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/en.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/en.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/es.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/es.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/et.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/et.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fi.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fi.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fil.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fil.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/he.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/he.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hi.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hi.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hu.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hu.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/id.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/id.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/it.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/it.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ja.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ja.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ko.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ko.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lt.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lt.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lv.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lv.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/mk.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/mk.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ms.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ms.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nb.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nb.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nl.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nl.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pl.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pl.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_BR.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_BR.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_PT.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_PT.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ro.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ro.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ru.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ru.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sk.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sk.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sl.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sl.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sv.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sv.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/th.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/th.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/tr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/tr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/uk.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/uk.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/vi.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/vi.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hans.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hans.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hant.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hant.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.m -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.m -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.m -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.h -------------------------------------------------------------------------------- /Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.m -------------------------------------------------------------------------------- /Pods/SendBirdSDK/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/SendBirdSDK/LICENSE.md -------------------------------------------------------------------------------- /Pods/SendBirdSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/SendBirdSDK/README.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Alamofire/Alamofire-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/NYTPhotoViewer/NYTPhotoViewer.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/NYTPhotoViewer/ResourceBundle-NYTPhotoViewer-NYTPhotoViewer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/NYTPhotoViewer/ResourceBundle-NYTPhotoViewer-NYTPhotoViewer-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/Pods-SendBird-iOS/Pods-SendBird-iOS.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RSKImageCropper/RSKImageCropper-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/RSKImageCropper/RSKImageCropper-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RSKImageCropper/RSKImageCropper-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/RSKImageCropper/RSKImageCropper-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RSKImageCropper/RSKImageCropper.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/Pods/Target Support Files/RSKImageCropper/RSKImageCropper.modulemap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/README.md -------------------------------------------------------------------------------- /SendBird-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SendBird-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SendBird-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SendBird-iOS.xcodeproj/xcshareddata/xcschemes/SendBird-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS.xcodeproj/xcshareddata/xcschemes/SendBird-iOS.xcscheme -------------------------------------------------------------------------------- /SendBird-iOS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SendBird-iOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SendBird-iOS.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /SendBird-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_100.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_1024-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_1024-1.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_1024.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_114.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_120.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_128.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_144.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_152.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_16.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_167.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_180.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_256.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_32.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_40-1.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_40-2.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_50.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_512.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_57.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_58.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_60.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_64.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_72.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_76.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_80.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/AppIcon.appiconset/appicon_87.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/bannedUsers.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/bannedUsers.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/bannedUsers.imageset/bannedUsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/bannedUsers.imageset/bannedUsers.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/bannedUsers.imageset/bannedUsers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/bannedUsers.imageset/bannedUsers@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/bannedUsers.imageset/bannedUsers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/bannedUsers.imageset/bannedUsers@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/blockedMembers.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/blockedMembers.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/blockedMembers.imageset/blockedMembers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/blockedMembers.imageset/blockedMembers.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/blockedMembers.imageset/blockedMembers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/blockedMembers.imageset/blockedMembers@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/blockedMembers.imageset/blockedMembers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/blockedMembers.imageset/blockedMembers@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/btn_delete-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/btn_delete-2.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/btn_delete-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/btn_delete-3.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/btn_delete_user.imageset/btn_delete.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_admin_message_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_admin_message_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_admin_message_border.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_admin_message_border.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_admin_message_name.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_admin_message_name.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_admin_message_text.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_admin_message_text.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_bar_item.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_bar_item.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_channel_list_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_channel_list_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_channel_settings_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_channel_settings_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_channelname_nickname_placeholder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_channelname_nickname_placeholder.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_empty_list_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_empty_list_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_general_file_message_container_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_general_file_message_container_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_general_file_message_filename.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_general_file_message_filename.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_general_file_message_transfer_progress_text.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_general_file_message_transfer_progress_text.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_divider.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_divider.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_incoming_audio_filename.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_incoming_audio_filename.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_incoming_message_nickname_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_incoming_message_nickname_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_last_message_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_last_message_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_member_count_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_member_count_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_member_count_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_member_count_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_message_nickname.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_message_nickname.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_message_text.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_message_text.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_name_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_name_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_outgoing_message_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_outgoing_message_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_unread_count_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_unread_count_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_group_channel_updated_at_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_group_channel_updated_at_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_hide_group_channel_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_hide_group_channel_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_image_file_massage_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_image_file_massage_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_leave_group_channel_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_leave_group_channel_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_message_input_textfield_border.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_message_input_textfield_border.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_message_input_textfiled_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_message_input_textfiled_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_message_input_view_top_border.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_message_input_view_top_border.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_message_sending_fail.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_message_sending_fail.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_navigation_tint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_navigation_tint.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_online_state_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_online_state_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_admin_message_text.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_admin_message_text.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_file_message_text.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_file_message_text.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_list_divider.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_list_divider.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_message_nickname.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_message_nickname.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_name_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_name_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_participants_count_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_participants_count_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_settings_border.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_settings_border.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_settings_count_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_settings_count_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_open_channel_settings_user_list_divider.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_open_channel_settings_user_list_divider.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_profile_last_updated_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_profile_last_updated_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_profile_nickname.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_profile_nickname.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_settings_border.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_settings_border.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_settings_description_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_settings_description_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_settings_menu_add_operator.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_settings_menu_add_operator.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_settings_nickname_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_settings_nickname_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_settings_section_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_settings_section_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_settings_time_label_highlighted.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_settings_time_label_highlighted.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_settings_time_label_normal.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_settings_time_label_normal.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_toast_bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_toast_bg.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_toast_label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_toast_label.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_user_list_divider.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_user_list_divider.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_user_message_name.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_user_message_name.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/color_user_message_text.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/color_user_message_text.colorset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/doNotDisturb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/doNotDisturb.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/doNotDisturb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/doNotDisturb@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/doNotDisturb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/doNotDisturb.imageset/doNotDisturb@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_audio_wave.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_audio_wave.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_audio_wave.imageset/imgAudio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_audio_wave.imageset/imgAudio.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_audio_wave_outgoing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_audio_wave_outgoing.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_audio_wave_outgoing.imageset/imgAudio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_audio_wave_outgoing.imageset/imgAudio.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_blocked_user_cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_blocked_user_cover.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_blocked_user_cover.imageset/imgBlockedUser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_blocked_user_cover.imageset/imgBlockedUser.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/btnAddOperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/btnAddOperator.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/btnAddOperator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/btnAddOperator@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/btnAddOperator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_add_operator.imageset/btnAddOperator@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_channel_settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_channel_settings.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_channel_settings.imageset/iconList.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_channel_settings.imageset/iconList.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_close_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_close_white.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_close_white.imageset/icnExit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_close_white.imageset/icnExit.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_group_channel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_group_channel.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_group_channel.imageset/iconCreateGroup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_group_channel.imageset/iconCreateGroup.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/blue.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/blue@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_group_channel_blue.imageset/blue@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_open_channel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_open_channel.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_open_channel.imageset/iconCreateOpen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_open_channel.imageset/iconCreateOpen.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/createPublicGroupChannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/createPublicGroupChannel.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/createPublicGroupChannel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/createPublicGroupChannel@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/createPublicGroupChannel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_create_public_group_channel_blue.imageset/createPublicGroupChannel@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_edit_channel_name.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_edit_channel_name.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_edit_channel_name.imageset/btnEditProfile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_edit_channel_name.imageset/btnEditProfile.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_resend.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_resend.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_resend.imageset/btnResend.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_resend.imageset/btnResend.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_normal.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_normal.imageset/iconAdd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_normal.imageset/iconAdd.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_pressed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_pressed.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_pressed.imageset/iconAddPressed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_file_msg_pressed.imageset/iconAddPressed.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_normal.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_normal.imageset/iconSendNor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_normal.imageset/iconSendNor.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_pressed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_pressed.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_pressed.imageset/iconSendActive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_btn_send_user_msg_pressed.imageset/iconSendActive.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_1.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_1.imageset/iconChannelcover01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_1.imageset/iconChannelcover01.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_2.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_2.imageset/iconChannelcover02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_2.imageset/iconChannelcover02.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_3.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_3.imageset/iconChannelcover03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_cover_image_placeholder_3.imageset/iconChannelcover03.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_1.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_1.imageset/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_1.imageset/group.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_2.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_2.imageset/group2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_2.imageset/group2.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_3.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_3.imageset/group3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_3.imageset/group3.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_4.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_4.imageset/group4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_4.imageset/group4.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_5.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_cover_image_5.imageset/group5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_cover_image_5.imageset/group5.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_1.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_1.imageset/iconProfile01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_1.imageset/iconProfile01.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_2.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_2.imageset/iconProfile02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_2.imageset/iconProfile02.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_3.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_3.imageset/iconProfile03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_3.imageset/iconProfile03.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_4.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_default_profile_image_4.imageset/iconProfile04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_default_profile_image_4.imageset/iconProfile04.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_add_operator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_add_operator.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_add_operator.imageset/iconAdd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_add_operator.imageset/iconAdd.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_ban.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_ban.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_ban.imageset/iconBan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_ban.imageset/iconBan.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/iconEditCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/iconEditCamera.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/iconEditCamera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/iconEditCamera@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/iconEditCamera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_edit_camera.imageset/iconEditCamera@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_failure.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_failure.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_failure.imageset/iconFail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_failure.imageset/iconFail.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_general_file.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_general_file.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_general_file.imageset/iconDoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_general_file.imageset/iconDoc.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder.imageset/iconImagePlaceholder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder.imageset/iconImagePlaceholder.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder_outgoing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder_outgoing.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder_outgoing.imageset/iconImagePlaceholder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_image_file_message_placeholder_outgoing.imageset/iconImagePlaceholder.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_mute.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_mute.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_mute.imageset/iconMute.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_mute.imageset/iconMute.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/iconNotiOff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/iconNotiOff.jpg -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/iconNotiOff@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/iconNotiOff@2x.jpg -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/iconNotiOff@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_nofi_off.imageset/iconNotiOff@3x.jpg -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_notification_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_notification_setting.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_notification_setting.imageset/iconNoti.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_notification_setting.imageset/iconNoti.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_operator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_operator.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_operator.imageset/iconOperator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_operator.imageset/iconOperator.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_participant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_participant.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_participant.imageset/iconParticipant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_participant.imageset/iconParticipant.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_play_audio.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_play_audio.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_play_audio.imageset/iconAudioPlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_play_audio.imageset/iconAudioPlay.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_play_audio_outgoing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_play_audio_outgoing.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_play_audio_outgoing.imageset/iconAudioPlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_play_audio_outgoing.imageset/iconAudioPlay.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_read.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_read.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_read.imageset/iconRead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_read.imageset/iconRead.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_video.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_video.imageset/iconVideo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_video.imageset/iconVideo.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder.imageset/icVideoThumbnail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder.imageset/icVideoThumbnail.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder_outgoing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder_outgoing.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder_outgoing.imageset/icVideoThumbnail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_icon_video_file_placeholder_outgoing.imageset/icVideoThumbnail.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_iicon_invite_member.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_iicon_invite_member.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_iicon_invite_member.imageset/iconInvite.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_iicon_invite_member.imageset/iconInvite.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_incoming_sending_flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_incoming_sending_flag.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_incoming_sending_flag.imageset/path11Copy2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_incoming_sending_flag.imageset/path11Copy2.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_checked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_checked.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_checked.imageset/listChecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_checked.imageset/listChecked.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_checked.imageset/listChecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_checked.imageset/listChecked@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_checked.imageset/listChecked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_checked.imageset/listChecked@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/listUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/listUnselected.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/listUnselected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/listUnselected@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/listUnselected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_list_unchecked.imageset/listUnselected@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/icLoading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/icLoading.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/icLoading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/icLoading@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/icLoading@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator.imageset/icLoading@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/bgLoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/bgLoding.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/bgLoding@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/bgLoding@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/bgLoding@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_loading_indicator_background.imageset/bgLoding@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_offline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_offline.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_offline.imageset/icOffiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_offline.imageset/icOffiline.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_offline.imageset/icOffiline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_offline.imageset/icOffiline@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_offline.imageset/icOffiline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_offline.imageset/icOffiline@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_online.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_online.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_online.imageset/icOnline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_online.imageset/icOnline.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_outgoing_sending_flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_outgoing_sending_flag.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_outgoing_sending_flag.imageset/path11Copy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_outgoing_sending_flag.imageset/path11Copy.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/logoImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/logoImg.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/logoImg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/logoImg@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/logoImg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo.imageset/logoImg@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/logoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/logoText.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/logoText@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/logoText@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/logoText@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_sendbird_logo_text.imageset/logoText@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_group_channel_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_group_channel_normal.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_group_channel_normal.imageset/iconTabGroupchatDisable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_group_channel_normal.imageset/iconTabGroupchatDisable.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_group_channel_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_group_channel_selected.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_group_channel_selected.imageset/iconTabGroupchatInable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_group_channel_selected.imageset/iconTabGroupchatInable.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_open_channel_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_open_channel_normal.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_open_channel_normal.imageset/iconTabOpenchatDisable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_open_channel_normal.imageset/iconTabOpenchatDisable.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_open_channel_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_open_channel_selected.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_open_channel_selected.imageset/iconTabOpenchatInable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_open_channel_selected.imageset/iconTabOpenchatInable.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_settings_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_settings_normal.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_settings_normal.imageset/iconTabSettingsDisable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_settings_normal.imageset/iconTabSettingsDisable.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_settings_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_settings_selected.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_tab_settings_selected.imageset/iconTabSettingsInable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_tab_settings_selected.imageset/iconTabSettingsInable.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_toast_check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_toast_check.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/img_toast_check.imageset/icCheck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/img_toast_check.imageset/icCheck.pdf -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSb.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSb.imageset/logoSb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSb.imageset/logoSb.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSb.imageset/logoSb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSb.imageset/logoSb@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSb.imageset/logoSb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSb.imageset/logoSb@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbird.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbird.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbird.imageset/logoSendbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbird.imageset/logoSendbird.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbird.imageset/logoSendbird@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbird.imageset/logoSendbird@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbird.imageset/logoSendbird@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbird.imageset/logoSendbird@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/Contents.json -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/logoSendbirdFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/logoSendbirdFull.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/logoSendbirdFull@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/logoSendbirdFull@2x.png -------------------------------------------------------------------------------- /SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/logoSendbirdFull@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Assets.xcassets/logoSendbirdFull.imageset/logoSendbirdFull@3x.png -------------------------------------------------------------------------------- /SendBird-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SendBird-iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SendBird-iOS/DownloadManager/DownloadManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/DownloadManager/DownloadManager.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel.storyboard -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelNavigationController.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelViewControllerA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelViewControllerA.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelViewControllerB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelViewControllerB.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/CreateGroupChannel/CreateGroupChannelViewControllerDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/GroupChannelChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/GroupChannelChatViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingAudioFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingAudioFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingAudioFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingAudioFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingGeneralFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingGeneralFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingGeneralFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingGeneralFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingImageVideoFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingImageVideoFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingImageVideoFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingImageVideoFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingUserMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingUserMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingUserMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelIncomingUserMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelMessageTableViewCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelMessageTableViewCellDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelNeutralAdminMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelNeutralAdminMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelNeutralAdminMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelNeutralAdminMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingAudioFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingAudioFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingAudioFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingAudioFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingGeneralFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingGeneralFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingGeneralFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingGeneralFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingImageVideoFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingImageVideoFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingImageVideoFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingImageVideoFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingUserMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingUserMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingUserMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelChat/ViewCells/GroupChannelOutgoingUserMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelCoverImageNameSettingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelCoverImageNameSettingDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelCoverImageNameSettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelCoverImageNameSettingViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelInviteMemberDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelInviteMemberDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelInviteMemberViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelInviteMemberViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelSettingsDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelSettingsDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/GroupChannelSettingsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsChannelCoverNameTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsChannelCoverNameTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsMemberTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsMemberTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsNotificationsTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsNotificationsTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsTableViewCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelSettings/ViewCells/GroupChannelSettingsTableViewCellDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannels/GroupChannelsUpdateListDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannels/GroupChannelsUpdateListDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannels/GroupChannelsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannels/GroupChannelsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannels/ViewCells/GroupChannelTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannels/ViewCells/GroupChannelTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelsHidden/GroupChannelHiddenChannelTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelsHidden/GroupChannelHiddenChannelTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelsHidden/GroupChannelHiddenChannelsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelsHidden/GroupChannelHiddenChannelsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelsPublic/GroupChannelPublicChannelTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelsPublic/GroupChannelPublicChannelTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/GroupChannel/GroupChannelsPublic/GroupChannelPublicChannelsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/GroupChannel/GroupChannelsPublic/GroupChannelPublicChannelsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/Images/loading_typing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Images/loading_typing.gif -------------------------------------------------------------------------------- /SendBird-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Info.plist -------------------------------------------------------------------------------- /SendBird-iOS/Login/ConnectionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Login/ConnectionManager.swift -------------------------------------------------------------------------------- /SendBird-iOS/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Login/LoginViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/MainTabBarController.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/Array+SendBird.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/Array+SendBird.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/Constants.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/CustomUI/CustomActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/CustomUI/CustomActivityIndicatorView.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/CustomUI/CustomButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/CustomUI/CustomButton.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/CustomUI/CustomProgressCircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/CustomUI/CustomProgressCircle.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/CustomUI/CustomTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/CustomUI/CustomTextField.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/CustomUI/FLAnimatedImageView+ImageLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/CustomUI/FLAnimatedImageView+ImageLoader.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/ImageUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/ImageUtil.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/NotificationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/NotificationDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/PhotoViewer/PhotoViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/PhotoViewer/PhotoViewer.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/PhotosViewerController/CustomPhotosViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/PhotosViewerController/CustomPhotosViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/String+SendBird.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/String+SendBird.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/Utils/UIViewController+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/Utils/UIViewController+Utils.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/Utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/Utils/Utils.swift -------------------------------------------------------------------------------- /SendBird-iOS/Misc/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Misc/WebViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/New Group/loading_typing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/New Group/loading_typing.gif -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel.storyboard -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelNavigationController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelChannelUrlTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelChannelUrlTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelCurrentUserTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelCurrentUserTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelCurrentUserTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelCurrentUserTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelUserTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewCell/CreateOpenChannelUserTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewControllerA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewControllerA.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewControllerB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/CreateOpenChannelViewControllerB.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/SelectOperatorsDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/SelectOperatorsDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/CreateOpenChannel/SelectOperatorsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/CreateOpenChannel/SelectOperatorsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/OpenChannelChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/OpenChannelChatViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAdminMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAdminMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAdminMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAdminMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAudioFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAudioFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAudioFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelAudioFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelGeneralFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelGeneralFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelGeneralFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelGeneralFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelImageVideoFileMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelImageVideoFileMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelImageVideoFileMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelImageVideoFileMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelMessageTableViewCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelMessageTableViewCellDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelUserMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelUserMessageTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelUserMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelChat/ViewCells/OpenChannelUserMessageTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelCoverImageNameSettingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelCoverImageNameSettingDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelCoverImageNameSettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelCoverImageNameSettingViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsUserList/OpenChannelMutedUserListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsUserList/OpenChannelMutedUserListViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsUserList/ViewCells/OpenChannelSettingsUserTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsUserList/ViewCells/OpenChannelSettingsUserTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelSettingsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelUserListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/OpenChannelUserListViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsChannelNameTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsChannelNameTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsChannelNameTableViewCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsChannelNameTableViewCellDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsMenuTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsMenuTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsUserTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannelSettings/ViewCells/OpenChannelSettingsUserTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannels/CreateOpenChannelDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannels/CreateOpenChannelDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannels/OpenChanannelChatDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannels/OpenChanannelChatDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannels/OpenChannelsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannels/OpenChannelsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/OpenChannel/OpenChannels/ViewCells/OpenChannelTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/OpenChannel/OpenChannels/ViewCells/OpenChannelTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/SceneDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/SendBird-iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/SendBird-iOS.entitlements -------------------------------------------------------------------------------- /SendBird-iOS/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings.storyboard -------------------------------------------------------------------------------- /SendBird-iOS/Settings/SettingsBlockedUserListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/SettingsBlockedUserListViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/SettingsTableViewCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/SettingsTableViewCellDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/SettingsTimePickerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/SettingsTimePickerDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/SettingsTimeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/SettingsTimeViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/UpdateUserProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/UpdateUserProfileViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/UserProfileImageNameSettingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/UserProfileImageNameSettingDelegate.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/ViewCells/BlockedUserTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/ViewCells/BlockedUserTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/ViewCells/SettingsSwitchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/ViewCells/SettingsSwitchTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/ViewCells/SettingsTimePickerTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/ViewCells/SettingsTimePickerTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/Settings/ViewCells/SettingsTimeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/Settings/ViewCells/SettingsTimeTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/SplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/SplitViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/UserProfile/UserProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/UserProfile/UserProfileViewController.swift -------------------------------------------------------------------------------- /SendBird-iOS/UserProfile/UserProfileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/UserProfile/UserProfileViewController.xib -------------------------------------------------------------------------------- /SendBird-iOS/ViewCells/SelectableUserTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/ViewCells/SelectableUserTableViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/ViewCells/SelectableUserTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/ViewCells/SelectableUserTableViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/ViewCells/SelectedUserCollectioViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/ViewCells/SelectedUserCollectioViewCell.swift -------------------------------------------------------------------------------- /SendBird-iOS/ViewCells/SelectedUserCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/ViewCells/SelectedUserCollectionViewCell.xib -------------------------------------------------------------------------------- /SendBird-iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/SendBird-iOS/ViewController.swift -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/SendBird-iOS-Swift/HEAD/catalog-info.yaml --------------------------------------------------------------------------------