博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
弹出的ViewController半透明效果
阅读量:6478 次
发布时间:2019-06-23

本文共 519 字,大约阅读时间需要 1 分钟。

在第一个ViewController做如下设置let controller = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("SecondViewController") as! SecondViewController            controller.view.backgroundColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.6)            self.modalPresentationStyle = UIModalPresentationStyle.FullScreen            self.presentViewController(controller, animated: true, completion:nil)到SecondViewController的ViewDidLoad()方法内添加以下代码,不然的话视图加载完后背影又变成了黑色self.modalPresentationStyle = .Custom

 

转载地址:http://eqwuo.baihongyu.com/

你可能感兴趣的文章
Ubuntu搜狗输入法候选词乱码
查看>>
js中回调函数写法
查看>>
React native android 最常见的10个问题
查看>>
数据结构和算法
查看>>
.Net 项目代码风格要求
查看>>
[pat]1045 Favorite Color Stripe
查看>>
Immutable学习及 React 中的实践
查看>>
【转】性能测试步骤
查看>>
OSI与TCP/IP各层的结构与功能,都有哪些协议
查看>>
Android实例-程序切换到后台及从后台切换到前台
查看>>
spring boot启动定时任务
查看>>
[转]html5 Canvas画图教程(6)—canvas里画曲线之arcTo方法
查看>>
算法 (二分查找算法)
查看>>
java Date 当天时间戳处理
查看>>
Python~迭代
查看>>
linux常用命令-关机、重启
查看>>
css布局 - 九宫格布局的方法汇总(更新中...)
查看>>
iOS开发之调用系统设置
查看>>
解决wampserver 服务无法启动
查看>>
初次使用 VUX
查看>>