美文网首页
swift3.1 present viewController时

swift3.1 present viewController时

作者: 火离曜月 | 来源:发表于2018-01-17 17:45 被阅读0次

今天在写分享界面时,需要将分享的controller从界面底部present出来,
界面布局结束后,调用
self.present(vc, animated: true, completion: nil)
发现分享界面出现后,闪一下,之后view部分黑屏了。
界面布局是用纯代码写的,debug view hierarchy,发现不是现有界面问题,原有界面被推到底部之后,清理了。找到问题之后,那解决的办法也就有了,添加代码
vc.modalPresentationStyle = .overCurrentContext
之后,问题完美解决。

相关文章

网友评论

      本文标题:swift3.1 present viewController时

      本文链接:https://www.haomeiwen.com/subject/zwmuoxtx.html