]> git.saurik.com Git - apple/security.git/blob - Keychain/DeviceItemCell.m
Security-57031.30.12.tar.gz
[apple/security.git] / Keychain / DeviceItemCell.m
1 //
2 // DeviceItemCell.m
3 // Security
4 //
5 //
6
7 #import "DeviceItemCell.h"
8
9 @implementation DeviceItemCell
10
11 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
12 {
13 self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
14 if (self) {
15 // Initialization code
16 }
17 return self;
18 }
19
20 - (void)setSelected:(BOOL)selected animated:(BOOL)animated
21 {
22 [super setSelected:selected animated:animated];
23
24 // Configure the view for the selected state
25 }
26
27 + (NSString *)reuseIdentifier
28 {
29 return @"DeviceItemCellIdentifier";
30 }
31
32 @end