mirror of
https://github.com/darlinghq/darling-security.git
synced 2024-11-27 05:50:21 +00:00
26 lines
657 B
Objective-C
26 lines
657 B
Objective-C
//
|
|
// ToolsViewController.h
|
|
// Keychain
|
|
//
|
|
// Created by john on 10/22/12.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <PeerListCell.h>
|
|
|
|
@interface ToolsViewController : UIViewController {
|
|
int notificationToken;
|
|
int notificationCount;
|
|
}
|
|
@property (weak, nonatomic) IBOutlet UIButton *autopopulateButton;
|
|
@property (weak, nonatomic) IBOutlet UIButton *clearButton;
|
|
@property (weak, nonatomic) IBOutlet UIButton *clearKVS;
|
|
@property (weak, nonatomic) IBOutlet UIButton *buttonC;
|
|
@property (weak, nonatomic) IBOutlet UILabel *kvsCleared;
|
|
@property (weak, nonatomic) IBOutlet UILabel *statusMessage;
|
|
|
|
- (void)setStatus:(NSString *)message;
|
|
|
|
@end
|