Statistics
| Branch: | Revision:

root / asi-http-request-with-pithos / iPhone Sample / SynchronousViewController.h @ be116d22

History | View | Annotate | Download (595 Bytes)

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

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

    
13
@interface SynchronousViewController : SampleViewController {
14
        ASIHTTPRequest *request;
15
        UITextField *urlField;
16
        UITextView *responseField;
17
        UIButton *goButton;
18

    
19
}
20
- (IBAction)simpleURLFetch:(id)sender;
21

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

    
24
@end