aboutsummaryrefslogtreecommitdiffstats
path: root/Classes/ChatViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/ChatViewController.h')
-rw-r--r--Classes/ChatViewController.h23
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