Signal-iOS/Signal/src/views/OWSDeviceTableViewCell.h
2021-03-04 18:32:24 -08:00

21 lines
468 B
Objective-C

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