linphone-iphone/Classes/LinphoneUI/UIDeviceCell.h
2019-04-23 18:24:17 +02:00

20 lines
491 B
Objective-C

//
// UIDeviceCell.h
// linphone
//
// Created by Danmei Chen on 07/11/2018.
//
#import <UIKit/UIKit.h>
@interface UIDeviceCell : UITableViewCell <UIGestureRecognizerDelegate>
@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