mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
20 lines
498 B
Objective-C
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
|