iOS present透明问题

发布于 2022-09-03 08:00:59 字数 717 浏览 24 评论 0

想要达到present透明效果,并且采用系统自身的属性

SecondViewController *vc = [SecondViewController new];

NSString * systemVersion =[[UIDevice currentDevice]systemVersion];
CGFloat fVersion =[systemVersion floatValue];
if (fVersion < 8) {
    vc.modalPresentationStyle = UIModalPresentationCurrentContext;
    self.modalPresentationStyle = UIModalPresentationCurrentContext;
}else{
    vc.modalPresentationStyle = UIModalPresentationOverCurrentContext;
}
vc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;

[self presentViewController:vc animated:YES completion:nil];

结果iOS8上面是没有问题的,从下面跟着背景一起上来,透明效果nice。但是我目前就一个iOS7.1.2的设备,它只会直接出来透明,不会从下面移动上来,设了别的属性从下面上来但是背景又变黑了,怎么样才能从下面上来,背景又不变黑呢。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文