aboutsummaryrefslogtreecommitdiffstats
path: root/Classes/ChatViewController.h
blob: ee5271531eaaefa05cd658b211eadcb93145fc81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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