mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
23 lines
700 B
Objective-C
23 lines
700 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 (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
|
@property (weak, nonatomic) IBOutlet UIIconButton *controllerNextButton;
|
|
@property (weak, nonatomic) IBOutlet UIView *waitView;
|
|
|
|
@property(nonatomic) Boolean isForEditing;
|
|
- (void) loadData;
|
|
|
|
@end
|