]> git.saurik.com Git - apple/security.git/blob - Keychain/KeychainItemCell.h
Security-57337.50.23.tar.gz
[apple/security.git] / Keychain / KeychainItemCell.h
1 //
2 // KeychainItemCell.h
3 // Security
4 //
5 // Created by John Hurley on 10/22/12.
6 //
7 //
8
9 #import <UIKit/UIKit.h>
10 #import "CircleStatusView.h"
11
12 @interface KeychainItemCell : UITableViewCell
13 {
14 uint32_t flashCounter;
15 NSTimer *flashTimer;
16 }
17 @property (weak, nonatomic) IBOutlet ItemStatusView *itemStatus;
18 @property (weak, nonatomic) IBOutlet UILabel *itemName;
19 @property (weak, nonatomic) IBOutlet UILabel *itemAccount;
20
21 - (void)startCellFlasher;
22
23 @end