LoginSignup
2
1

More than 5 years have passed since last update.

Swift初心者メモ Webページを表示する

Last updated at Posted at 2015-08-26
sample

class ViewController: UIViewController, UIWebViewDelegate {
    // UIWebViewを配置
    @IBOutlet weak var myWebView: UIWebView!

    override func viewDidLoad() {
        super.viewDidLoad()

        // urlオブジェクト作る
        var myUrl = NSURL(string: "http://www.geocities.co.jp/SweetHome/1863/")

        // URLリクセストをつくる
        var myUrlReq = NSURLRequest(URL:myUrl!)

        // UIWebViewに表示
        myWebView.loadRequest(myUrlReq)
    }

}

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1