我不得不扩展对目标iOS 15的Cocoapod的支持,并将UINavigationController作为底层模态显示,用于UIViewController
问题是self.bottomController.sheetPresentationController仅适用于iOS 15,并且必须在目标12.0之前工作
如果我注解这行:
if let sheet = self.bottomController.sheetPresentationController {
sheet.detents = [.large()]
}
iOS 12目标编译成功,但模态内容显示为全屏。
如何模仿或做一些事情来显示内容(红色文字)作为模态,作为图片?
我试着使用其他豆荚到我的豆荚,但没有成功的结果。谢谢!
1条答案
按热度按时间ymdaylpp1#
sheetPresentationController仅适用于ios 15及更高版本,对于以前版本,您需要设置。自定义modalPresentationStype
//MARK:-UI视图控制器转换委托
并添加给定的表示控制器