TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Chat room that tries to mimic iMessage with bouncy bubbles
To run the example project; clone the repo, and run pod install
from the Example directory first.
In orde to use in your project subclass BORCharRoom view controller and override 'sendMessage'.
- (void)sendMessage {
id <BORChatMessage> message = [[BORChatMessage alloc] init];
message.text = self.messageTextView.text;
message.sentByCurrentUser = YES;
message.date = [NSDate date];
[self addMessage:message scrollToMessage:YES];
[super sendMessage];
}
Bohdan Orlov, [email protected]
BORChat is available under the MIT license. See the LICENSE file for more info.