新手我可以使用我自己的 SFSafariViewController 并预加载一个 url。然后在故事板上使用它
Posted
技术标签:
【中文标题】新手我可以使用我自己的 SFSafariViewController 并预加载一个 url。然后在故事板上使用它【英文标题】:NEWBIE can I use my own SFSafariViewController and preload a url. Then use it on storyboard 【发布时间】:2016-03-01 01:04:10 【问题描述】:我试图在情节提要上将 UIViewController 指定为我自己的自定义类 SimpleSafariViewController。编译器不允许我重写 init() 方法来预加载 http://news.google.com
编译错误是“初始化方法的覆盖不可用” 如果编译器允许我,我会有以下代码
SimpleSafariViewController
convenience init()
super.init(URL: URL("http://news.google.com"), entersReaderIfAvailable: true)
如果是这样,那么有没有其他方法可以解决这个问题。
我已经在github上发布了最简单的项目
https://github.com/joshuacalloway/SimpleSafari
swift 2.1,xcode 7.2
【问题讨论】:
【参考方案1】:您没有像建议的那样使用 SFSafariViewController。它并不意味着作为您 StoryBoard 上的 ViewController。 SuggestedSafariViewController
中的实现是正确的方法。 (同意@matt)
【讨论】:
为什么不意味着坐在 Storyboard 上?以上是关于新手我可以使用我自己的 SFSafariViewController 并预加载一个 url。然后在故事板上使用它的主要内容,如果未能解决你的问题,请参考以下文章
我想为我自己创建的数据集使用 LSTM 实现 GRU。由于我是 python 新手,我不确定如何添加 GRU 层。如何添加 GRU?