24 lines
611 B
Objective-C
24 lines
611 B
Objective-C
//
|
|
// WagicDownloadProgressView.h
|
|
// wagic
|
|
//
|
|
// Created by Michael Nguyen on 12/10/11.
|
|
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface WagicDownloadProgressViewController : UIViewController<UIAlertViewDelegate>
|
|
{
|
|
|
|
}
|
|
|
|
- (void) startDownload: (NSString *) downloadType;
|
|
|
|
@property (nonatomic, retain) UITextView *downloadMessageStatus;
|
|
@property (nonatomic, retain) UIProgressView *downloadProgressView;
|
|
@property (nonatomic, retain) NSString *kDownloadFileName;
|
|
@property (nonatomic, retain) NSString *kDownloadIosUpdateFileName;
|
|
|
|
@end
|