diff options
| author | Teddy Wing | 2012-09-29 16:15:01 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2012-09-29 16:15:01 -0400 | 
| commit | 033f9053ada0a7f2a9ef7e6652746cd3cbb8f300 (patch) | |
| tree | ee0a8c2127d189098e18e0078418359d40e41759 /Classes/ChatViewController.h | |
| parent | d02256dc49356e6dc1769cc0fb4737a7f013cbed (diff) | |
| download | babblr-iOS-033f9053ada0a7f2a9ef7e6652746cd3cbb8f300.tar.bz2 | |
Integrated multi-line SMS-style text box for chat pane. Added a tableView for chat messages.
Diffstat (limited to 'Classes/ChatViewController.h')
| -rw-r--r-- | Classes/ChatViewController.h | 23 | 
1 files changed, 23 insertions, 0 deletions
| 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 <UIKit/UIKit.h> +#import "HPGrowingTextView.h" + + +@interface ChatViewController : UIViewController <HPGrowingTextViewDelegate, UITableViewDelegate, UITableViewDataSource> { +	UITableView *chatTableView; +	UIView *containerView; +    HPGrowingTextView *textView; +} + +@property (nonatomic, retain) UITableView *chatTableView; + +-(void)resignTextView; + +@end | 
