session-ios/Signal/src/views/OWSDeviceTableViewCell.h
Michael Kirk ef6784ed95 Device Manager
* List linked devices
* Adding a new device
* Removing a device

TODO: design on the QRScanner

// FREEBIE
2016-09-06 15:57:44 -04:00

19 lines
470 B
Objective-C

// Copyright © 2016 Open Whisper Systems. All rights reserved.
#import <SignalServiceKit/OWSDevice.h>
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface OWSDeviceTableViewCell : UITableViewCell
@property (strong, nonatomic) IBOutlet UILabel *nameLabel;
@property (strong, nonatomic) IBOutlet UILabel *linkedLabel;
@property (strong, nonatomic) IBOutlet UILabel *lastSeenLabel;
- (void)configureWithDevice:(OWSDevice *)device;
@end
NS_ASSUME_NONNULL_END