]> git.saurik.com Git - apple/security.git/blobdiff - Keychain/KeychainItemCell.h
Security-57031.1.35.tar.gz
[apple/security.git] / Keychain / KeychainItemCell.h
diff --git a/Keychain/KeychainItemCell.h b/Keychain/KeychainItemCell.h
new file mode 100644 (file)
index 0000000..0c64c0d
--- /dev/null
@@ -0,0 +1,23 @@
+//
+//  KeychainItemCell.h
+//  Security
+//
+//  Created by John Hurley on 10/22/12.
+//
+//
+
+#import <UIKit/UIKit.h>
+#import "CircleStatusView.h"
+
+@interface KeychainItemCell : UITableViewCell
+{
+    uint32_t flashCounter;
+    NSTimer *flashTimer;
+}
+@property (weak, nonatomic) IBOutlet ItemStatusView *itemStatus;
+@property (weak, nonatomic) IBOutlet UILabel *itemName;
+@property (weak, nonatomic) IBOutlet UILabel *itemAccount;
+
+- (void)startCellFlasher;
+
+@end