I'm using ASIHTTPRequest to track downloading but it doesn't seem to work.
I'm using the code shown in: How to Using ASIHTTPRequest to tracking Upload/Download progress, but Xcode errors out saying maxValue cannot be found
.
Then I tried:
UIProgressView * myProgressIndicator;
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDownloadProgressDelegate:myProgressIndicator];
[request startSynchronous];
NSLog(@"Value: %f", [myProgressIndicator progress];
This failed as well. Can someone help?