Chat
CleverPush Chat View
import CleverPush
let chatView = CPChatView(frame: CGRect(x: 0, y: 0, width: self.view.frame.size.width, height: self.view.frame.size.height))
self.view.addSubview(chatView)
#import <CleverPush/CPChatView.h>
CPChatView *chatView = [[CPChatView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
[self.view addSubview:chatView];
Handle opened URLs:
CPChatView *chatView = [[CPChatView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) urlOpenedCallback:^(NSURL *url) {
// do something with the opened URL
} subscribeCallback:^() {
// user has subscribed via Chat
}];
// Colors can be modified:
chatView.chatInputContainerBackgroundColor = [UIColor redColor];
chatView.chatInputBackgroundColor = [UIColor redColor];
chatView.chatInputTextColor = [UIColor redColor];
chatView.chatSenderBubbleTextColor = [UIColor redColor];
chatView.chatReceiverBubbleBackgroundColor = [UIColor redColor];
chatView.chatReceiverBubbleTextColor = [UIColor redColor];
chatView.chatSendButtonBackgroundColor = [UIColor redColor];
chatView.chatTimestampTextColor = [UIColor redColor];