2017-03-16 60 views
0

我是Swift的新手,正在嘗試創建一個從我的網站讀取JSON數據的表。我跟着一些教程,並能夠讓我的代碼與表控制器一起工作。現在我試圖在視圖控制器中使用一個表視圖,所以我可以有更多的定製。我的問題是,當我嘗試使用我的新代碼時,無法真正顯示數據。從外部服務器連接JSON到Swift tableView

這是我在我的viewController.swift:

import UIKit 

class ViewController: UIViewController { 

@IBOutlet weak var tableView: UITableView! 
var TableData:Array<String> = Array <String>() 


override func viewDidLoad() { 
    super.viewDidLoad() 

    get_data_from_url("http://www.stevenbunting.org/Alliris/service.php") 
} 



func numberOfSections(in tableView: UITableView) -> Int { 
    return 1 
} 

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 
    return TableData.count 
} 


func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) 

    cell.textLabel?.text = TableData[indexPath.row] 

    return cell 
} 






func get_data_from_url(_ link:String) 
{ 
    let url:URL = URL(string: link)! 
    let session = URLSession.shared 

    let request = NSMutableURLRequest(url: url) 
    request.httpMethod = "GET" 
    request.cachePolicy = NSURLRequest.CachePolicy.reloadIgnoringCacheData 


    let task = session.dataTask(with: request as URLRequest, completionHandler: { 
     (
     data, response, error) in 

     guard let _:Data = data, let _:URLResponse = response , error == nil else { 

      return 
     } 


     self.extract_json(data!) 


    }) 

    task.resume() 

} 


func extract_json(_ data: Data) 
{ 


    let json: Any? 

    do 
    { 
     json = try JSONSerialization.jsonObject(with: data, options: []) 
    } 
    catch 
    { 
     return 
    } 

    guard let data_list = json as? NSArray else 
    { 
     return 
    } 


    if let countries_list = json as? NSArray 
    { 
     for i in 0 ..< data_list.count 
     { 
      if let country_obj = countries_list[i] as? NSDictionary 
      { 
       if let country_name = country_obj["user"] as? String 
       { 
        if let country_code = country_obj["friendlist"] as? String 
        { 
         TableData.append(country_name + " [" + country_code + "]") 
        } 
       } 
      } 
     } 
    } 



    DispatchQueue.main.async(execute: {self.do_table_refresh() 

    }) 

} 

func do_table_refresh() 
{ 
    self.tableView.reloadData() 

} 


} 
+0

你是否將ViewController設置爲tableView的數據源?可能不會,因爲你的ViewController代碼沒有實現[UITableViewDataSource-protocol](https://developer.apple.com/reference/uikit/uitableviewdatasource);) –

回答

0

也許你沒有設置的tableView的數據源。要做到這一點,實現在視圖控制器類的UITableViewDataSource-protocol並在viewDidLoad()中的tableView的DataSource屬性設置爲self,例如:

class ViewController: UIViewController, UITableViewDataSource { 
// ... 
    override func viewDidLoad() { 
     super.viewDidLoad() 

     tableView.dataSource = self 
     // ... 
    } 
    //... 
} 

哦,不要忘了蘋果的交通運輸安全的設置,否則你不會看到任何東西,因爲iOS不再允許HTTP,你已經使用HTTPS。處理此問題的正確方法是爲您的域獲取SSL證書。

quick'n'dirty和絕對不推薦的方法是disable ATS or to set an exception for certain, trustworthy domains