forked from mirrors/linphone-iphone
17 lines
455 B
Objective-C
17 lines
455 B
Objective-C
//
|
|
// ChatConversationCreateViewViewController.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 12/10/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ChatConversationCreateTableView.h"
|
|
#import "UICompositeView.h"
|
|
|
|
@interface ChatConversationCreateView : UIViewController <UICompositeViewDelegate, UISearchBarDelegate>
|
|
@property(strong, nonatomic) IBOutlet ChatConversationCreateTableView *tableController;
|
|
- (IBAction)onBackClick:(id)sender;
|
|
|
|
@end
|