美文网首页
UIAlertController弹出非常慢

UIAlertController弹出非常慢

作者: biyu6 | 来源:发表于2018-11-27 15:12 被阅读0次

    bug:在点击tableViewCell调用UIAlertController时,弹出框要过好几秒才会弹出

    解决一:
    你设置了 cell.selectionStyle = UITableViewCellSelectionStyleNone;将其改为UITableViewCellSelectionStyleDefault,或者去掉就行;

    解决二:
    将present的代码放在主线程中执行
    dispatch_async(dispatch_get_main_queue(), ^{
    [self presentViewController: alertController animated: YES completion: nil];
    });

    相关文章

      网友评论

          本文标题:UIAlertController弹出非常慢

          本文链接:https://www.haomeiwen.com/subject/nebgqqtx.html