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];   
 });
}
上一篇 下一篇

猜你喜欢

热点阅读