- 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];
网友评论