linphone-iphone/Classes/LinphoneUI/UIRecordingCell.h
2018-07-25 11:43:32 +02:00

19 lines
383 B
Objective-C

//
// UIRecordingCell.h
// linphone
//
// Created by benjamin_verdier on 25/07/2018.
//
#import <UIKit/UIKit.h>
@interface UIRecordingCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
@property (weak, nonatomic) IBOutlet UILabel *dateLabel;
@property(nonatomic, assign) NSString *recording;
- (id)initWithIdentifier:(NSString*)identifier;
@end