if([NSThreadisMainThread]) {
NSLog(@"Yay!");
[self.navigationController popViewControllerAnimated:YES];
}else{
NSLog(@"Humph, switching to main");
dispatch_async(dispatch_get_main_queue(), ^{
[self.navigationController popViewControllerAnimated:YES];
});
}
网友评论