Chat Room and Messages - TapUI
Create Personal Chat Room with User Model
#import <TapTalk/TapUI.h>
[TapUI sharedInstance] createRoomWithOtherUser:OTHER_USER success:^[(TapUIChatViewController * _Nonnull chatViewController) {
// You can choose to present or push view controller
// Present room list view
[self presentViewController:chatViewController animated:YES completion:^{
// Completion
}];
// Push room list view
[self.navigationController pushViewController:chatViewController animated:YES];
}];Create Personal Chat Room with TapTalk.io User ID
Create Personal Chat Room with Client User ID
Create Room with Room Model
Create Room with Room Model & Scroll to Selected Message
Create Saved Messages Chat Room
Last updated