aboutsummaryrefslogtreecommitdiffstats
path: root/Classes/ChatViewController.h
diff options
context:
space:
mode:
authorTeddy Wing2012-09-29 16:15:01 -0400
committerTeddy Wing2012-09-29 16:15:01 -0400
commit033f9053ada0a7f2a9ef7e6652746cd3cbb8f300 (patch)
treeee0a8c2127d189098e18e0078418359d40e41759 /Classes/ChatViewController.h
parentd02256dc49356e6dc1769cc0fb4737a7f013cbed (diff)
downloadbabblr-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.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