天天看點

iOS 關于presentViewController彈出頁面反應遲鈍的問題

想要實作點選tableview中的一個cell,彈出一個頁面,代碼如下:

[objc]  view plain copy

  1. HSLoginViewController *loginVC = [HSLoginViewController new];  
  2. [self presentViewController:loginVC animated:YES completion:nil];        

結果頁面彈出速度非常慢,有時幾秒鐘才能彈出,又是根本不彈出,直到在頁面上随意再次點選一下才彈出。

将代碼做如下修改後,問題解決:

[objc]  view plain copy

iOS 關于presentViewController彈出頁面反應遲鈍的問題
iOS 關于presentViewController彈出頁面反應遲鈍的問題
  1. dispatch_async(dispatch_get_main_queue(), ^{  
  2.             HSLoginViewController *loginVC = [HSLoginViewController new];  
  3.             [self presentViewController:loginVC animated:YES completion:nil];  
  4.         });  

由此推斷,presentViewController這個方法有可能不是在UI線程執行的。

原文位址:http://blog.csdn.net/worldzhy/article/details/41870669