尋找我的iOS應用程序的一些幫助。在我的應用程序中,我想要在WKWebView中打開來自我的域內(EX:communionchapelefca.org)的點擊鏈接,然後在Safari中打開所有其他域(EX:google.com)的鏈接。我更喜歡以編程的方式來做這件事,因爲這是我的代碼已經安裝的方式。WKWebView在Safari中打開某個域名的鏈接
我已經找到了幾個解決方案上的計算器(here,here,here和here),但他們似乎都對象 - 基於我期待使用雨燕的解決方案是。提前致謝。
ViewController.swift:
import UIKit
import WebKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let myWebView:WKWebView = WKWebView(frame: CGRectMake(0, 0, UIScreen.mainScreen().bounds.width, UIScreen.mainScreen().bounds.height))
myWebView.loadRequest(NSURLRequest(URL: NSURL(string: "http://www.communionchapelefca.org/app-home")!))
self.view.addSubview(myWebView)
謝謝!你的代碼解決了我的問題! –
只是作了修正;再次感謝 –
@GregWilliams歡迎您 –