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