linphone-ios/Classes/ChatConversationCreateTableView.h
2017-10-24 11:39:10 +02:00

22 lines
666 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) Boolean notFirstTime;
@property(nonatomic, strong) NSMutableArray *contactsGroup;
@property(nonatomic, strong) NSMutableDictionary *contactsDict;
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
@property (weak, nonatomic) IBOutlet UIIconButton *controllerNextButton;
- (void) loadData;
@end