Statistics
| Branch: | Revision:

root / asi-http-request-with-pithos / iPhone Sample / AuthenticationViewController.h @ 32017ec6

History | View | Annotate | Download (622 Bytes)

1
//
2
//  AuthenticationViewController.h
3
//  Part of the ASIHTTPRequest sample project - see http://allseeing-i.com/ASIHTTPRequest for details
4
//
5
//  Created by Ben Copsey on 01/08/2009.
6
//  Copyright 2009 All-Seeing Interactive. All rights reserved.
7
//
8

    
9
#import <UIKit/UIKit.h>
10
#import        "SampleViewController.h"
11
@class ASIHTTPRequest;
12

    
13
@interface AuthenticationViewController : SampleViewController {
14
        
15
        ASIHTTPRequest *request;
16
        
17
        UISwitch *useKeychain;
18
        UISwitch *useBuiltInDialog;
19
        UITextView *responseField;
20
}
21
- (IBAction)fetchTopSecretInformation:(id)sender;
22

    
23
@property (retain, nonatomic) ASIHTTPRequest *request;
24
@end