-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 90fa0e7
Showing
45 changed files
with
11,642 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.DS_Store | ||
*.swp | ||
*~.nib | ||
build | ||
*.pbxuser | ||
*.perspective | ||
*.perspectivev3 | ||
*.mode1v3 | ||
*.tm_build_errors | ||
"Static analysis" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// | ||
// ASIAuthenticationDialog.h | ||
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest | ||
// | ||
// Created by Ben Copsey on 21/08/2009. | ||
// Copyright 2009 All-Seeing Interactive. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
@class ASIHTTPRequest; | ||
|
||
typedef enum _ASIAuthenticationType { | ||
ASIStandardAuthenticationType = 0, | ||
ASIProxyAuthenticationType = 1 | ||
} ASIAuthenticationType; | ||
|
||
@interface ASIAutorotatingViewController : UIViewController | ||
@end | ||
|
||
@interface ASIAuthenticationDialog : ASIAutorotatingViewController <UIActionSheetDelegate, UITableViewDelegate, UITableViewDataSource> { | ||
ASIHTTPRequest *request; | ||
ASIAuthenticationType type; | ||
UITableView *tableView; | ||
UIViewController *presentingController; | ||
BOOL didEnableRotationNotifications; | ||
} | ||
+ (void)presentAuthenticationDialogForRequest:(ASIHTTPRequest *)request; | ||
+ (void)dismiss; | ||
|
||
@property (retain) ASIHTTPRequest *request; | ||
@property (assign) ASIAuthenticationType type; | ||
@property (assign) BOOL didEnableRotationNotifications; | ||
@property (retain, nonatomic) UIViewController *presentingController; | ||
@end |
Oops, something went wrong.