linphone-iphone/Classes/LinphoneUI/UICallPausedCell.h
Gautier Pelloux-Prayer 08f819e332 checkbox tv
2015-09-29 16:59:10 +02:00

21 lines
486 B
Objective-C

//
// UIPausedCallCell.h
// linphone
//
// Created by Gautier Pelloux-Prayer on 11/09/15.
//
//
#import "UIRoundedImageView.h"
#import "LinphoneManager.h"
@interface UICallPausedCell : UITableViewCell
@property(weak, nonatomic) IBOutlet UIRoundedImageView *avatarImage;
@property(weak, nonatomic) IBOutlet UILabel *nameLabel;
@property(weak, nonatomic) IBOutlet UILabel *durationLabel;
- (id)initWithIdentifier:(NSString *)identifier;
- (void)setCall:(LinphoneCall *)call;
@end