使用NSURLConnection创建动态UILabel,显示下载文件的状态



我创建了一个只有一个页面的应用程序。在那个页面上有一个按钮,标签&progressview。我想要的是开始下载时,点击按钮,并显示进度& &;标签状态下载

我可以创建进度视图,但是我不能创建显示下载状态的标签。

例如,我想让我的标签显示"12 MB downloaded of 100 MB"

这是我的代码:

视图controller.h

@interface ViewController : UIViewController
{
    float expectedBytes;
}
@property (weak,nonatomic) IBOutlet UIProgressView *progressView;
@property (strong,nonatomic) IBOutlet UIButton *download;
- (IBAction)download:(id)sender;
@end

视图controller.m

@implementation ViewController
{
    NSMutableData *receivedData;
    NSString *currentURL;
    NSString *name;
}
- (void)viewDidLoad
{
    currentURL = @"http://192.168.1.100/mamal/Adele%20-%20Someone%20Like%20You%20(MTV%20Video%20Music%20Awards%202011)%20HD%20Live.mkv";
    name = [currentURL lastPathComponent];
    [super viewDidLoad];
}
@synthesize progressView,download;
-(IBAction)download:(id)sender
{
    NSString* documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSString* foofile = [documentsPath stringByAppendingPathComponent:name];
    BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:foofile];
    if (!fileExists)
    {
        [self downloadWithNsurlconnection];
    }
    else
    {
        NSLog(@"FILE EXIST");
    }
}
-(void)downloadWithNsurlconnection
{
    NSURL *url = [NSURL URLWithString:currentURL];
    NSURLRequest *theRequest = [NSURLRequest requestWithURL:url  cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:600];
    receivedData = [[NSMutableData alloc] initWithLength:0];
    NSURLConnection * connection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self startImmediately:YES];
    [connection start];
}

- (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
    progressView.hidden = NO;
    [receivedData setLength:0];
    expectedBytes = [response expectedContentLength];
}
- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [receivedData appendData:data];
    float progressive = (float)[receivedData length] / (float)expectedBytes;
    [progressView setProgress:progressive];
}
- (void) connectionDidFinishLoading:(NSURLConnection *)connection {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSLog(@"%@",paths);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *pdfPath = [documentsDirectory stringByAppendingPathComponent:name];
    NSLog(@"Succeeded! Received %d bytes of data",[receivedData length]);
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    [receivedData writeToFile:pdfPath atomically:YES];
}

请指导我如何用NSURLConnection显示UILabel的状态下载

将此语法放入。h文件

@property (weak,nonatomic) IBOutlet UILabel *label;

then in .m file

- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [receivedData appendData:data];
    float progressive = (float)[receivedData length] / (float)expectedBytes;
    [progressView setProgress:progressive];
    [lable setText:[NSString stringWithFormat:@"%u MB of %f MB",[receivedData length],expectedBytes]];
}

为标签

创建Outlet
@property (weak,nonatomic) IBOutlet UILabel *label;

then in

- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [receivedData appendData:data];
    float progressive = (float)[receivedData length] / (float)expectedBytes;
    [progressView setProgress:progressive];
    [lable setText:[NSString stringWithFormat:@"%u MB of %f MB",[receivedData length],expectedBytes]];
}

可以将字节改为MB

最新更新