我需要有关如何解决此问题的帮助。
我尝试使用json获取数据但是当我尝试在Table View中查看它没有显示时。
我使用下面的代码测试表视图是否正常工作并且它有效!
// self.clientList = [" Mango"," Banana"," Orange"," Guava","葡萄"]
我使用下面的代码来测试json是否返回了数据。仍然有效。
for item in jsonClientList {
let firstName = item["firstName"]
//Printing is working
print(firstName as! String)
}
线不工作!我不知道为什么。它在循环内部,但加载表视图时的数据。
提前致谢。
self.clientList.append(firstName as!String)
//---------------------------------
var clientList:[String] = []
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.clientList.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "tblClientList")
cell.textLabel?.text = self.clientList[indexPath.row]
return cell
}
internal func jsonParser() -> Void{
//-------------------------
let postEndpoint: String = "http://domain.com/client"
let url = NSURL(string: postEndpoint)
let session = NSURLSession.sharedSession()
session.dataTaskWithURL(url!, completionHandler:
{
(data: NSData?, response: NSURLResponse?, error: NSError?) -> Void in
do{
let ipString = NSString(data:data!, encoding: NSUTF8StringEncoding)
if (ipString != nil) {
let jsonClientList = try NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.MutableContainers) as! NSArray
for item in jsonClientList {
let firstName = item["firstName"]
//I tried to print the data from json and its working!
print(firstName as! String)
//Line not working
//I tried to insert the firstName to clientList array
self.clientList.append(firstName as! String)
}
}
//If I use this its working
// self.clientList = ["Mango", "Banana", "Orange", "Guava", "Grapes"]
}
} catch{
print("Something bad happed!")
}
}
).resume()
//--------------
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
jsonParser()
}
//---------------------------------
答案 0 :(得分:4)
你忘了刷新要在表格中显示的新数据,就像
一样 self.clientList.append(firstName as! String)
}
dispatch_async(dispatch_get_main_queue())
self.yourtableViewname.reloadData()
}
答案 1 :(得分:1)
正如在另一个答案中所提到的,问题是需要重新加载表视图。
在Swift中,有一种更方便的方法来填充数据源数组,而无需使用map
函数重复循环。
它假设 - 就像问题一样 - jsonClientList
中的所有词典都包含一个键firstName
。
tableView
是UITableView
个实例的名称。
...
let jsonClientList = try NSJSONSerialization.JSONObjectWithData(data!, options: []) as! [[String:AnyObject]]
self.clientList = jsonClientList.map{ $0["firstName"] as! String }
dispatch_async(dispatch_get_main_queue()) {
self.tableView.reloadData()
}
}
} catch {
...
在这种情况下,不需要使用可变容器读取JSON。