linphone-ios/Classes/LinphoneUI/UIDeviceCell.h
2018-11-09 10:56:52 +01:00

20 lines
461 B
Objective-C

//
// UIDeviceCell.h
// linphone
//
// Created by Danmei Chen on 07/11/2018.
//
#import <UIKit/UIKit.h>
@interface UIDeviceCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *deviceLabel;
@property (weak, nonatomic) IBOutlet UIButton *securityButton;
@property LinphoneParticipantDevice *device;
@property BOOL isOneToOne;
- (IBAction)onSecurityCallClick:(id)sender;
- (id)initWithIdentifier:(NSString *)identifier;
- (void)update;
@end