mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 10:19:23 +00:00
20 lines
615 B
Objective-C
20 lines
615 B
Objective-C
//
|
|
// UIDevicesDetails.h
|
|
// linphone
|
|
//
|
|
// Created by Danmei Chen on 06/11/2018.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIDevicesDetails : UITableViewCell <UITableViewDelegate, UITableViewDataSource>
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *dropMenuButton;
|
|
@property (weak, nonatomic) IBOutlet UILabel *addressLabel;
|
|
@property (weak, nonatomic) IBOutlet UIRoundedImageView *avatarImage;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *securityImage;
|
|
@property (weak, nonatomic) IBOutlet UITableView *devicesTable;
|
|
@property bctbx_list_t *devices;
|
|
|
|
- (id)initWithIdentifier:(NSString *)identifier;
|
|
@end
|