我正在尝试访问从我的 API 调用返回的 JSON 数据结构中的值。我只想在我的 JSON 中shared
的shared
值为 true 时显示图像,否则显示不同的图像。目前,当我启动应用程序时,前两个结果不显示图像,因为数据库中的值设置为 false。但是当我向下滚动然后向上滚动时,它们会出现。我有点困惑如何使用 JSON 来检查条件。我是否在正确的位置检查每一行的条件?像 SwitfyJSON 这样的东西会是访问我的嵌套 JSON 数据结构的更好方法吗?
class FactsTableViewController: UITableViewController, UISearchBarDelegate {
var data = [AnyObject]()
var id = String()
func callAPI() {
let user = "user"
let pass = "pass"
let url = "https://example.com/api"
Alamofire.request(.GET, url, parameters: nil)
.authenticate(user: user, password: pass)
.responseJSON { (request, response, JSON, error) in
self.data = JSON! as [AnyObject]
self.tableView.reloadData()
self.cacheFacts()
}
}
override func tableView(tableView: UITableView?, cellForRowAtIndexPath indexPath: NSIndexPath?) -> UITableViewCell {
let cell = tableView!.dequeueReusableCellWithIdentifier("facts", forIndexPath: indexPath!) as FactTableViewCell
cell.factTitle.text = data[indexPath!.row]["preferredPhrase"] as? String
cell.factBody.text = data[indexPath!.row]["content"] as? String
// If the value of teamShared is true show image, else show something different
if let shared = self.data[indexPath!.row]["shared"] as? Bool {
var isShared = UIImageView(frame: CGRectMake(10, 95, 15, 15)); // set as you want
var isSharedImage = UIImage(named: "team.png");
isShared.image = isSharedImage;
cell.addSubview(isShared);
// This always prints true even if the JSON is set to false. Can't figure out why this is?
println(shared)
}
return cell
}
}