forked from mirrors/linphone-iphone
19 lines
549 B
Objective-C
19 lines
549 B
Objective-C
//
|
|
// ChatConversationSearchTableView.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 30/09/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ChatConversationCreateTableView : UITableViewController <UISearchBarDelegate>
|
|
@property(weak, nonatomic) IBOutlet UISearchBar *searchBar;
|
|
@property(nonatomic) Boolean allFilter;
|
|
@property(nonatomic, strong) NSMutableArray *contactsGroup;
|
|
@property(nonatomic, strong) NSMutableDictionary *contactsDict;
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
|
- (void) loadData;
|
|
|
|
@end
|