Skip to content
This repository has been archived by the owner on Mar 5, 2018. It is now read-only.

BohdanOrlov/BORChat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BORChat

Version Platform

Chat room that tries to mimic iMessage with bouncy bubbles

Usage

image

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];
}

Requirements

Installation

BORChat is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "BORChat"

Author

Bohdan Orlov, [email protected]

License

BORChat is available under the MIT license. See the LICENSE file for more info.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published