mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
17 lines
366 B
Objective-C
17 lines
366 B
Objective-C
//
|
|
// UIChatCreateCellViewTableViewCell.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 12/10/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIChatCreateCell : UITableViewCell
|
|
@property(weak, nonatomic) IBOutlet UILabel *displayNameLabel;
|
|
@property(weak, nonatomic) IBOutlet UILabel *addressLabel;
|
|
|
|
- (id)initWithIdentifier:(NSString *)identifier;
|
|
|
|
@end
|