LoginSignup
8

More than 5 years have passed since last update.

[swift]HTMLの取得

Posted at

青空文庫からHTMLをダウンロードします。

//阿呆の一生をダウンロードURL
        let newsUrlString = "http://www.aozora.gr.jp/cards/000879/files/19_14618.html"

        //NSURLを作る
        var url = NSURL(string: newsUrlString)!

        //データをダウンロードする
        var task = NSURLSession.sharedSession().dataTaskWithURL(url, completionHandler:{ data, response, error in
            //ダウンロードサイズの表示
        println("done, length \(data.length)")
        })

        task.resume()

ディバックに「done, lehgtn」にHTMLの容量が表示されればOKです。
『たのしいswift』より

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
What you can do with signing up
8