darling-security/Keychain/KCATableViewController.h
2016-02-23 21:19:11 +01:00

27 lines
575 B
Objective-C

//
// KCATableViewController.h
// Security
//
// Created by John Hurley on 10/22/12.
//
//
#import <UIKit/UIKit.h>
@class KeychainItemCell;
@interface KCATableViewController : UITableViewController
{
int notificationToken;
bool hasUnlockedRecently;
}
//@property (assign, nonatomic) IBOutlet KeychainItemCell *kcitemCell;
@property (strong, nonatomic) NSArray *kcItemStatuses;
@property (strong, nonatomic) NSArray *kcItemNames;
@property (strong, nonatomic) NSTimer *lockTimer;
@property (strong, nonatomic) NSTimer *recentTimer;
- (NSArray *)getItems;
@end