mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
19 lines
383 B
Objective-C
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
|