rename skip to cancel

This commit is contained in:
Stephan Diederich
2013-09-10 17:40:56 +02:00
parent e3dcfa629f
commit 2886ac4d77
4 changed files with 24 additions and 22 deletions

View File

@@ -31,11 +31,11 @@
*/
@property (nonatomic, assign) BOOL requirePassword;
/** configure if user can abort authentication or not
/** configure if user can skip authentication or not
*
* defaults to YES
*/
@property (nonatomic, assign) BOOL showsCancelButton;
@property (nonatomic, assign) BOOL showsSkipButton;
@property (nonatomic, weak) id<BITAuthenticationViewControllerDelegate> delegate;
@@ -44,11 +44,11 @@
@protocol BITAuthenticationViewControllerDelegate<NSObject>
/**
* called then the user cancelled
* called then the user skipped the auth-dialgo
*
* @param viewController the delegating viewcontroller
*/
- (void) authenticationViewControllerDidCancel:(UIViewController*) viewController;
- (void) authenticationViewControllerDidSkip:(UIViewController*) viewController;
- (void) authenticationViewControllerDidTapWebButton:(UIViewController*) viewController;