1
我有問題,此代碼 -錯誤 - 線程1個exc_bad_instruction(代碼= exc_1386_invop子碼=爲0x0)
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func get(){
let url = NSURL(string: "http://www..php")
let data = NSData(contentsOfURL: url!)
values = try! NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.MutableContainers) as!NSArray
tableView.reloadData()
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return values.count;
}
此錯誤 線程1個exc_bad_instruction(代碼= exc_1386_invop子碼=爲0x0)
你可以分享你的數據,以便更好地理解。 –
@Anupam米什拉 - FUNC得到(){ 設URL = NSURL(字符串: 「HTTP://www..php」) 讓數據= NSData的: 值=嘗試(contentsOfURL網址!)! NSJSONSerialization.JSONObjectWithData(數據!選項:NSJSONReadingOptions.MutableContainers)作爲NSArray的 tableView.reloadData() } FUNC的tableView(的tableView:UITableView的,numberOfRowsInSection部的:int) - >內部{ 返回values.count; } – hamid
請在原始文章中添加您的代碼並將其格式化(cmd + k)。 – jbehrens94