在Twitter等popup-webview中打开链接

时间:2014-12-24 11:39:43

标签: ios swift uiwebview popup storyboard

Twitter在一个应用程序内浏览器中打开链接,从底部跳转到全屏模式,请参阅以下屏幕截图:

enter image description here

如何在自己的应用中获得这样的内容?我不知道这是如何调用的所以我当前的谷歌搜索结果并没有解决我的问题。我不确定这是否是webview或Safari扩展使用或其他。

我也想知道如何在xcode-storyboard中实现它。我应该创建一个使用全屏webview跳转到前面的新viewcontroller吗?我希望有人可以给我一个带有教程/解释的示例或网站。

[最好是迅速的例子,我对Objective_C不太了解]

2 个答案:

答案 0 :(得分:4)

SVWebViewController让这非常简单,它是一个插入式浏览器视图控制器,具有所有标准的铃声和口哨声。

目标C:

SVModalWebViewController *webViewController = [[SVModalWebViewController alloc] initWithAddress:@"http://google.com"];
[self presentViewController:webViewController animated:YES completion:NULL];

夫特:

let webViewController = SVModalWebViewController(address: "http://google.com")
self.presentViewController(webVC, animated: true, completion: nil)

答案 1 :(得分:3)

这是包含网络视图的modal presentation ViewController