I have made a subclass of NSOperation
called ˚ to achieve multiple movie downloads . In the appDelegate.m
, I have made an object of NSOperationQueue
.
- (void)applicationDidFinishLaunching:(UIApplication *)application {
queue = [[NSOperationQueue alloc] init];
[queue setMaximumConcurrentOperationCount:5]
}
MovieDownloadOperation
depends on a class called Downloader
which actually downloads the movie
and gives callback movieCompletelyDownloadedWithUrl:
.
Then , I have made a property called downloadState
in MovieDownloadOperation
. It has different values like "STARTED"
, "DOWNLOADING"
, "COMPLETED"
, "ERROR"
.
MyDownloadOperation looks like
-(id)initWithUrl:(NSURL *)url
{
if (self = [super init])
{
_downloader = [[Downloader alloc] initWithUrl:url];
_downloadState = @"STARTED" ;
}
}
-(void)main
{
while(1)
{
if ([_downloadState isEqualToString:@"COMPLETED"])
{
NSLog(@"movie downloaded successfully");
break ;
}
}
}
-(void)movieCompletelyDownloadedWithUrl:(NSURL *)url
{
_downloadState = @"COMPLETED" ;
}
This works well for one movie , but when I try to download more than one movie , the UI freezes until the first is downloaded . I think the the problem is the while
loop inside the main
method , is there a better way to check if the _downloadState
is changed to "COMPLETED"
??
You can use
NSTimer
to check whether your download is completed or not. It'll not freezes your UI