I have an viewController that fires a web service get some data and stores the result in core data after parsing in a different thread..
I have a lot of data so parsing will take some time and am not sure if popping the viewController in navigation will stop the execution of my parsing method,
if it stops the execution in between then my core data DB will get corrupted so does it stops the execution or perform the selector before releasing my viewController object
MyViewController *vc = [[MyViewController alloc] init];
[self.navigationController pushViewController:vc animated:YES];
[vc performSelectorInBackground:aSelector withObject:arg];