JBInputTableView 1.0.7

JBInputTableView 1.0.7

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2015

Maintained by Josip Bernat.



UITableView subclass which handles input text view. Suitable plugin for chat applications. It uses PHFComposeBarView as input view, great and easy to customize resizable text view.

alt tag

Podfile

platform :ios, '8.0'
pod 'JBInputTableView'

USAGE

You can use it from Storyboards, XIBs or directly from code. Change your UITableView to JBInputTableView and make it firstResponder in viewDidLoad.

- (void)viewDidLoad {

    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"CellIdentifier"];
    self.tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;
    [self.tableView becomeFirstResponder];
}