I load a big plist file from url and I must wait for some seconds before I can use the application. Is there some solution? How it can be loaded in background? Is GCD
what I need? How it can be implemented?
My code:
NSString *urlStr = [[NSString alloc]
initWithFormat:@"http://www.domain.com/data.xml"];
NSURL *url = [NSURL URLWithString:urlStr];
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfURL:url];