// // ChatViewController.h // NearMe // // Created by TW on 9/29/12. // Copyright 2012 __MyCompanyName__. All rights reserved. // #import #import "HPGrowingTextView.h" #import "ChatMessagesDataSource.h" @interface ChatViewController : UIViewController { UITableView *chatTableView; UIView *containerView; HPGrowingTextView *textView; ChatMessagesDataSource *dataSource; } @property (nonatomic, retain) UITableView *chatTableView; @property (nonatomic, retain) ChatMessagesDataSource *dataSource; -(void)resignTextView; @end