gpt4 book ai didi

ios - 无法使用 PFQuery Table ViewController (Swift 2) 显示自定义单元格

转载 作者:行者123 更新时间:2023-12-01 16:26:30 26 4
gpt4 key购买 nike

使用 parse.com v1.4(与 cocoa pod 一起安装)和 Swift 2 +

我已经使用自定义单元格设置了我的 PFQueryTableViewController (ParseUI)。我相信一切都很好,但是我无法让单元格显示来自 Parse.com 的值,即使我确实收到了它并且可以打印它(我已经调试过了)。

我像这样出队:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject?) -> PFTableViewCell {

let cellIdentifier = "Cell"

let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! OrderTableViewCell

// Extract values from the PFObject to display in the table cell
if let pfObject = object {

// prints expected value, e.g. 1, 2, 3
print(pfObject["table"])

// shows "Label" which is my label's default text on the SB!!
let table = pfObject["table"] as? String
cell.lblTable.text = table
}
return cell
}

我的 PFQueryTableViewController 的其余部分似乎可以从 Parse 加载数据:
enter image description here

我的自定义单元格 OrderTableViewCell(带有一些标签 IBActions):
enter image description here

SB设置:

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

结果:

enter image description here

如何让标签显示实际文本?我错过了什么?由于我通过 Parse UI 获得的附加功能,我不想恢复到标准 UITableView。

最佳答案

原来它就像改变一样简单

let table = pfObject["table"] as? String


let table = String(pfObject["table"])

关于ios - 无法使用 PFQuery Table ViewController (Swift 2) 显示自定义单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34986817/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com