- (void)setupSendButton method is now public so you may create a category on JSMessageInputView to customize the send button, if you wish

This commit is contained in:
Jesse Squires
2013-03-23 18:40:30 -04:00
parent fdac159784
commit 81fe042f2d
2 changed files with 3 additions and 1 deletions

View File

@@ -40,6 +40,9 @@
@property (strong, nonatomic) UITextView *textView;
@property (strong, nonatomic) UIButton *sendButton;
#pragma mark - Initialization
- (void)setupSendButton;
#pragma mark - Message input view
- (void)adjustTextViewHeightBy:(CGFloat)changeInHeight;
+ (CGFloat)textViewLineHeight;

View File

@@ -41,7 +41,6 @@
- (void)setup;
- (void)setupTextView;
- (void)setupSendButton;
@end