gpt4 book ai didi

ios - UITableViewCell 在 Swift 中不显示内容

转载 作者:可可西里 更新时间:2023-11-01 01:05:38 25 4
gpt4 key购买 nike

代码是:

override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)

let delegate = UIApplication.sharedApplication().delegate as! AppDelegate
let managedContext = delegate.managedObjectContext!

let fetchRequest = NSFetchRequest(entityName: "Inspiration")
var error: NSError?

let fetchedResults = managedContext.executeFetchRequest(fetchRequest, error: &error) as? [NSManagedObject]

inspirations = fetchedResults!

}

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

let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as! UITableViewCell
let content = inspirations[indexPath.row]
cell.textLabel?.text = content.valueForKey("name") as? String

return cell
}

fetchedResults 中有一些值,它应该没有问题,应该是 UITableViewCell 的实现有问题。

最佳答案

确保为 UITableView 设置了委托(delegate)和数据源。

尝试将此添加到您的 viewDidLoad 函数中。

        myTableView.delegate = self
myTableView.dataSource = self

关于ios - UITableViewCell 在 Swift 中不显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31230184/

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