簡體   English   中英

快速將字符串轉換為UIIMAGE

[英]Swift Convert string into UIIMAGE

我想使用iOS 9的swift將圖像從api Web服務異步加載到uitableview中。以下是我的播放列表控制器中的代碼。 提前致謝。

import UIKit

class PlaylistViewController: UITableViewController {

var playlists = [[String: String]]()

override func viewDidLoad() {
    super.viewDidLoad()

    let urlString = "http://xxxxxxx.xxx/api/v1/players/1/playlists?api_key=xxxxxxxxxxxx"

    if let url = NSURL(string: urlString) {

        if let data = try? NSData(contentsOfURL: url, options: []) {
            let json = JSON(data: data)


            if json != nil {
                parseJSON(json)
            } else {
                showError()
            }
        } else {
            showError()
        }
    } else {
        showError()
    }
}

func showError() {
    let ac = UIAlertController(title: "Loading error", message: "There was a problem loading the feed; please check your connection and try again.", preferredStyle: .Alert)
    ac.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
    presentViewController(ac, animated: true, completion: nil)
}

func parseJSON(json: JSON) {
    for result in json["playlists"].arrayValue {
        let title = result["title"].stringValue
        let id = result["id"].stringValue
        let cover_url = result["cover_url"].stringValue
        let obj = ["title": title, "id": id, "cover_url" : cover_url]
        playlists.append(obj)
    }

    tableView.reloadData()
}

使用NSURLSession dataTaskWithURL異步任務:

override func viewDidLoad() {
    super.viewDidLoad()

    let urlString = "http://xxxxxxx.xxx/api/v1/players/1/playlists?api_key=xxxxxxxxxxxx"

    if let url = NSURL(string: urlString) {

        let session = NSURLSession.sharedSession()
        var task = session.dataTaskWithURL(url) { (data, response, error) -> Void in

            if let err = error {
                showError(err)
            } else {
                let json = NSString(data: data, encoding: NSUTF8StringEncoding)
                // json is a String, you should handle this String as JSON
                parseJSON(json)
            }
    }
}

您的tableView.reloadData()應該在主線程中執行(因為NSURLSession dataTaskWithUrl結果在后台線程中)

dispatch_async(dispatch_get_main_queue(), {
    tableView.reloadData()
})

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM