我正在使用Alamofire和SwiftyJSON将JSON数据传递给数组。
第一个打印返回正确的数组:
[(1, "Arena", "Oklahoma"), (2, "Stafium", "Berlin")]
但是第二个打印出一个空数组:
[]
我不明白为什么?
这是我的代码。 已解决@NickCatib
typealias cType = (ID: Int,Tag: String, Location: String)
var cBlue = [cType]()
var NumRows = 0
class MainViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
Alamofire.request(.GET, url, parameters: ["postType": "live"]).responseJSON { (_, _, result) in
switch result {
case .Success(let data):
let json = JSON(data)
for(_,subJSON) in json["LocalInfo"] {
let ID = subJSON["id"].int!
let Tag = subJSON["Tag"].string!
let Location = subJSON["Location"].string!
let Info = (ID: ID, Tag: Tag, Location: Location)
cBlue.append(Info)
}
self.tableView.reloadData()
case .Failure(_, let error):
print("Request failed with error: \(error)")
}
}
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
reloadUI()
return cBlues.count
}
func tableView(tableView: UITableView,
cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCellWithIdentifier("CellConcert",
forIndexPath: indexPath)
let info = cBlue[indexPath.row] as! Info
cell.textLabel?.text = info.Tag
return cell
}
}
这是对的吗?
由于
答案 0 :(得分:2)
实际上非常简单:第二次打印将在Alamofire请求完成之前执行 - Alamofire.request
是稍后将执行的异步调用。
您将获得AFTER请求后的信息,如果您需要设置一些UI元素,则必须调用某种重新加载视图,或relaodData()
如果您使用的是UITableView
。
您可以在此处拨打自定义功能reloadUI()
:
//PRINTS THE ARRAY
reloadUI()
print(cBlue)
示例:
类MainViewController:UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
Alamofire.request(.GET, url, parameters: ["postType": "live"]).responseJSON { (_, _, result) in
switch result {
case .Success(let data):
let json = JSON(data)
for(_,subJSON) in json["LocalInfo"] {
let ID = subJSON["id"].int!
let Tag = subJSON["Tag"].string!
let Location = subJSON["Location"].string!
let Info = (ID: ID, Tag: Tag, Location: Location)
cBlue.append(Info)
}
case .Failure(_, let error):
print("Request failed with error: \(error)")
}
//PRINTS THE ARRAY
reloadUI()
print(cBlue)
}
//PRINT [] EMPTY ARRAY
print(cBlue)
}
}
func reloadUI(){
self.tagLabel.text = (cBlue[0] as! Info).tag
self.locationLabel.text = (cBlue[0] as! Info).location
}