美文网首页
ios崩溃 2022-04-22

ios崩溃 2022-04-22

作者: iOS打怪升级 | 来源:发表于2022-04-22 13:49 被阅读0次
    1. UIAlertController 的类型 UIAlertControllerStyleActionSheet 在ipad 崩溃
      解决办法:
    需要指定位置大小
    [sheet.popoverPresentationController setSourceView:self];    
    CGRect btnRect = CGRectMake(self.bounds.size.width/2, self.bounds.size.height/2, 50, 400);
    [sheet.popoverPresentationController setSourceRect:btnRect];
            
    

    相关文章

      网友评论

          本文标题:ios崩溃 2022-04-22

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