linphone-ios/Classes/ChatConversationCreateView.h
2016-02-01 14:26:44 +01:00

20 lines
498 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>
@property(strong, nonatomic) IBOutlet ChatConversationCreateTableView *tableController;
@property(weak, nonatomic) IBOutlet UIIconButton *backButton;
- (IBAction)onBackClick:(id)sender;
@end