When user taps on button im navigating to the another view,and set the background image for that view.But the image is from URL.To convert into NSData format its taking some time.So,How can i achieve this using blocks.
I have used below code but no luck..
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self setBackGroundImageView];
});
- (void)setBackGroundImageView {
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:sharedDelegate.fbAppScopeId]];
dispatch_sync(dispatch_get_main_queue(), ^(void) {
if (imageData) {
UIImageView *backgroundView = [[UIImageView alloc] initWithImage:[self squareImageWithImage:[UIImage imageWithData:imageData] scaledToSize:CGSizeMake(100, 100)]];
CGFloat ratio = backgroundView.frame.size.width/screenWidth;
CGRect imageFrame = backgroundView.frame;
imageFrame.size.width = screenWidth;
imageFrame.size.height = backgroundView.frame.size.height/ratio;
if (imageFrame.size.height<screenHeight) {
ratio = backgroundView.frame.size.height/screenHeight;
imageFrame.size.height = screenHeight;
imageFrame.size.width = backgroundView.frame.size.width/ratio;
}
backgroundView.frame = imageFrame;
backgroundView.center = CGPointMake(screenWidth/2, backgroundView.center.y);
backgroundView.alpha = 0.5;
[self.view addSubview:backgroundView];
}
}
}
Your problem is in this line of code:
The correct use of dispatch_async is
Please, change
dispatch_sync
onsetBackGroundImageView
todispatch_async
Also I would recommend you to place all async code in one method, as i mention before. something like this: