Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (658 Bytes)

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

    
9
#import <UIKit/UIKit.h>
10

    
11

    
12
@interface SampleViewController : UIViewController <UITableViewDelegate> {
13
        UINavigationBar *navigationBar;
14
        UITableView *tableView;
15
}
16

    
17
- (void)showNavigationButton:(UIBarButtonItem *)button;
18
- (void)hideNavigationButton:(UIBarButtonItem *)button;
19

    
20
@property (retain, nonatomic) IBOutlet UINavigationBar *navigationBar;
21
@property (retain, nonatomic) IBOutlet UITableView *tableView;
22
@end