| Revision 26,
606 bytes
checked in by kpoole, 2 years ago
(diff) |
|
Episode 5
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // sync_download.h |
|---|
| 3 | // wesnoth |
|---|
| 4 | // |
|---|
| 5 | // Created by Kyle Poole on 5/10/10. |
|---|
| 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import <UIKit/UIKit.h> |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | @interface sync_download : UIViewController <UITableViewDelegate,UITableViewDataSource> { |
|---|
| 13 | IBOutlet UIActivityIndicatorView *activity; |
|---|
| 14 | IBOutlet UITableView *table; |
|---|
| 15 | IBOutlet UIBarButtonItem *barButton; |
|---|
| 16 | } |
|---|
| 17 | |
|---|
| 18 | @property (nonatomic,retain) IBOutlet UIActivityIndicatorView *activity; |
|---|
| 19 | @property (nonatomic,retain) IBOutlet UITableView *table; |
|---|
| 20 | @property (nonatomic,retain) IBOutlet UIBarButtonItem *barButton; |
|---|
| 21 | |
|---|
| 22 | -(IBAction)onDone:(id)sender; |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.