ios崩溃 2022-04-22

  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)