-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPINView.h
More file actions
38 lines (34 loc) · 1019 Bytes
/
Copy pathPINView.h
File metadata and controls
38 lines (34 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* This header is generated by class-dump-z 0.2-0.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: /System/Library/PrivateFrameworks/Preferences.framework/Preferences
*/
#import "PINEntryView.h"
#import "Preferences-Structs.h"
#import <UIKit/UIView.h>
@class FailureBarView, UILabel;
@interface PINView : UIView <PINEntryView> {
UILabel* _titleLabel;
UILabel* _errorTitleLabel;
FailureBarView* _failureView;
UILabel* _pinPolicyLabel;
BOOL _error;
id _delegate;
}
-(void)showError:(id)error animate:(BOOL)animate;
-(void)setPINPolicyString:(id)string visible:(BOOL)visible;
-(void)hideError;
-(void)hidePasscodeField:(BOOL)field;
-(void)setTitle:(id)title font:(id)font;
-(id)stringValue;
-(void)setStringValue:(id)value;
-(void)deleteLastCharacter;
-(void)appendString:(id)string;
-(BOOL)becomeFirstResponder;
-(void)setDelegate:(id)delegate;
-(void)showFailedAttempts:(int)attempts;
-(void)hideFailedAttempts;
-(void)dealloc;
-(void)setBlocked:(BOOL)blocked;
@end