mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
20 lines
461 B
Objective-C
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
|