From 033f9053ada0a7f2a9ef7e6652746cd3cbb8f300 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 29 Sep 2012 16:15:01 -0400 Subject: Integrated multi-line SMS-style text box for chat pane. Added a tableView for chat messages. --- Classes/ChatViewController.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Classes/ChatViewController.h (limited to 'Classes/ChatViewController.h') diff --git a/Classes/ChatViewController.h b/Classes/ChatViewController.h new file mode 100644 index 0000000..ee52715 --- /dev/null +++ b/Classes/ChatViewController.h @@ -0,0 +1,23 @@ +// +// ChatViewController.h +// NearMe +// +// Created by TW on 9/29/12. +// Copyright 2012 __MyCompanyName__. All rights reserved. +// + +#import +#import "HPGrowingTextView.h" + + +@interface ChatViewController : UIViewController { + UITableView *chatTableView; + UIView *containerView; + HPGrowingTextView *textView; +} + +@property (nonatomic, retain) UITableView *chatTableView; + +-(void)resignTextView; + +@end -- cgit v1.2.3