-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChatBrowserViewController.h
More file actions
executable file
·47 lines (39 loc) · 1.18 KB
/
ChatBrowserViewController.h
File metadata and controls
executable file
·47 lines (39 loc) · 1.18 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// ChatBrowserViewController
// Junction
//
// Created by Bobby Ren on 12/19/12.
//
//
#import <UIKit/UIKit.h>
#define CB_TAG_PHOTO 1001
#define CB_TAG_NAMELABEL 1002
#define CB_TAG_TEXTLABEL 1003
#define CB_TAG_TIMELABEL 1004
@interface ChatBrowserViewController : UIViewController <UINavigationControllerDelegate, UITabBarControllerDelegate, UITableViewDataSource, UITableViewDelegate>
{
IBOutlet UIButton * buttonFeedback;
IBOutlet UIButton * buttonClear;
#if USE_PULL_TO_REFRESH
EGORefreshTableHeaderView *refreshHeaderView;
BOOL _reloading;
int numColumns;
int borderWidth;
int columnPadding;
int columnWidth;
int columnHeight;
#endif
}
@property (nonatomic) IBOutlet UITableView * tableView;
@property (nonatomic, weak) NSMutableDictionary * recentChats;
@property (nonatomic, strong) NSMutableArray * recentChatsArray;
#if USE_PULL_TO_REFRESH
@property(assign,getter=isReloading) BOOL reloading;
@property(nonatomic,readonly) EGORefreshTableHeaderView *refreshHeaderView;
@property (nonatomic, assign) BOOL hasHeaderRow;
#endif
#if USE_PULL_TO_REFRESH
- (void)dataSourceDidFinishLoadingNewData;
#endif
-(IBAction)didClickFeedback:(id)sender;
@end