天天看點

tabletableView的cell點選 跳轉頁面 出現延遲的狀況

首先 ,要看好寫的是不是

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath ;這個方法

然後 如果是用navigation push 跳轉一般不會出現延遲的問題

如果你用的 present跳轉頁面的話 要是出現 點選一下 可能3-4秒之後才會跳轉,或者再點選一下 回跳轉,那麼你可以嘗試一下 

 if (indexPath.row == 6) {

        dispatch_async(dispatch_get_main_queue(), ^{

            FamilyViewController *familyVC = [[FamilyViewController alloc] init];

            [self presentViewController:familyVC animated:YES completion:^{

            }];

        });

}

因為程式中可能沒有預設在主線程中