gpt4 book ai didi

ios - 不符合 UITableViewDataSource - 解析应用

转载 作者:行者123 更新时间:2023-11-29 01:33:28 25 4
gpt4 key购买 nike

我在连接到 TodayViewControllerViewController 中使用 UITableView。我想使用我的 Parse 数据库中的数据加载到 TableView 中。

这是我的 TodayViewController 类:

import UIKit
class TodayViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet var InfoTableView: UITableView?

override func viewDidLoad() {
super.viewDidLoad()

InfoTableView!.delegate = self
InfoTableView!.dataSource = self
loadParseData()

// Do any additional setup after loading the view.
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}


func loadParseData() {

let query : PFQuery = PFQuery(className: "News")
query.orderByDescending("Headline")

}


func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject?) -> PFTableViewCell {
var cell = tableView.dequeueReusableCellWithIdentifier("NewCell") as! PFTableViewCell!
if cell == nil {
cell = PFTableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "NewCell")
}

//Extract values from the PFObject to display in the table cell

if let Headline = object?["Headline"] as? String {
cell?.textLabel?.text = Headline
}
if let Subtitle = object?["SubtitleText"] as? String {
cell?.detailTextLabel?.text = Subtitle
}

return cell
}

出现此错误:

enter image description here

我该如何解决这个问题?整体结构有没有错误?如果需要,请索取更多信息。

最佳答案

是的,您没有确认 UITableViewDataSource 协议(protocol),因为您没有必需的方法

func tableView(_ tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell

所以你需要继承PFQueryTableViewController来使用你想要的方法

class TodayViewController: PFQueryTableViewController {
...
}

关于ios - 不符合 UITableViewDataSource - 解析应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33210422/

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