Skip to content

Commit

Permalink
Merge branch 'master' of github.com:dkasper/Humanity-iPhone
Browse files Browse the repository at this point in the history
  • Loading branch information
dkasper committed Nov 6, 2011
2 parents 6d1e589 + 6d9e642 commit 723828b
Show file tree
Hide file tree
Showing 82 changed files with 17,685 additions and 3 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added Humanity/.DS_Store
Binary file not shown.
35 changes: 35 additions & 0 deletions Humanity/ASIHTTPRequest/ASIAuthenticationDialog.h
@@ -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

0 comments on commit 723828b

Please sign in to comment.