真正基本的問題在這裏:我在我的視圖控制器中有一個Web視圖,並且無法弄清楚如何使它顯示一個網站。我找不到的解決方案正在爲我工作。我在網上看到的大部分內容都告訴我要輸入下面的代碼(示例url),但是我收到了錯誤,告訴我要刪除'@'並添加幾個';'但這樣做並不能解決問題。如何將UIWebView鏈接到網站
- (void)viewDidLoad {
[super viewDidLoad];
NSString *fullURL = @"http://conecode.com";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_viewWeb loadRequest:requestObj];
我不知道爲什麼我在與一些看起來很簡單這麼大的困難...這裏是我在我的代碼。我如何讓網絡視圖顯示一個網站?提前致謝!我已經從這個社區學到了很多東西。
import UIKit
class SecondViewController: UIViewController {
@IBOutlet var webView: UIWebView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}