blob: 1170bd9964c7dd225e632905dcd28bb6097d7cd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// ChatViewController.h
// NearMe
//
// Created by TW on 9/29/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "HPGrowingTextView.h"
#import "ChatMessagesDataSource.h"
@interface ChatViewController : UIViewController <HPGrowingTextViewDelegate, UITableViewDelegate> {
UITableView *chatTableView;
UIView *containerView;
HPGrowingTextView *textView;
ChatMessagesDataSource *dataSource;
}
@property (nonatomic, retain) UITableView *chatTableView;
@property (nonatomic, retain) ChatMessagesDataSource *dataSource;
-(void)resignTextView;
@end
|