这让我疯狂, 我正在尝试使用Parse API中的原型单元创建一个自定义单元格 - 我一直在敲打我的头一整天。
我没有任何错误,但它不起作用 - 我认为我的课有问题,有什么UITableView和什么是PFTableViewCell,知道PARSE的人可以看看这个吗。
class CustomCell: PFTableViewCell {
@IBOutlet weak var EventTitle: UILabel!
}
class TableViewController: PFQueryTableViewController {
override init!(style: UITableViewStyle, className: String!) {
super.init(style: style, className: className)
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
self.parseClassName = "Events_"
self.pullToRefreshEnabled = true
self.paginationEnabled = true
}
override func queryForTable() -> PFQuery! {
var query = PFQuery(className: self.parseClassName)
if (objects.count == 0)
{
query.cachePolicy = kPFCachePolicyNetworkOnly
}
return query
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject!) -> PFTableViewCell {
var cell: CustomCell = tableView.dequeueReusableCellWithIdentifier("CustomCell", forIndexPath: indexPath) as CustomCell
cell.EventTitle.text = object["Title"] as NSString
return cell
}
任何帮助都会很棒,谢谢