popViewControllerAnimated 引起崩溃 找
2017-07-11 本文已影响0人
Justin_W
if([NSThreadisMainThread]) {
NSLog(@"Yay!");
[self.navigationController popViewControllerAnimated:YES];
}else{
NSLog(@"Humph, switching to main");
dispatch_async(dispatch_get_main_queue(), ^{
[self.navigationController popViewControllerAnimated:YES];
});
}