mirror of
https://github.com/darlinghq/darling-security.git
synced 2024-11-27 05:50:21 +00:00
33 lines
589 B
Objective-C
33 lines
589 B
Objective-C
//
|
|
// DeviceItemCell.m
|
|
// Security
|
|
//
|
|
//
|
|
|
|
#import "DeviceItemCell.h"
|
|
|
|
@implementation DeviceItemCell
|
|
|
|
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
|
|
{
|
|
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
|
|
if (self) {
|
|
// Initialization code
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
|
|
{
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
+ (NSString *)reuseIdentifier
|
|
{
|
|
return @"DeviceItemCellIdentifier";
|
|
}
|
|
|
|
@end
|