gpt4 book ai didi

swift - Xcode 无法识别 FUITableViewDataSource

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

我想使用 FUITableViewDataSource 作为我的 tableView 数据源,但我不断收到“无法识别的文件类型”错误。

这是我的文件头。

import UIKit
import Firebase
import SwiftyJSON

Podfile 有:

pod 'FirebaseCore', '~> 3.0'
pod 'FirebaseDatabase', '~> 3.0'
pod 'FirebaseUI', '~> 3.0'

以及我的一些代码无法正常工作:

var dataSource: FUITableViewDataSource!

艾米,我在这里做错了什么吗?

解决方案:实际上你必须导入 FirebaseDatabaseUI

最佳答案

下面的代码是代码应该如何实现。您需要提供更多代码,因为我们需要了解您如何实现数据源。另外,你说的代码不起作用是什么意思。是否显示任何错误消息?

let firebaseRef = FIRDatabase.database().reference()
var dataSource: FUITableViewDataSource!

self.dataSource = self.tableView.bind(to: self.firebaseRef) { tableView, indexPath, snapshot in

// Dequeue cell

let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)

/* populate cell */

return cell
}

关于swift - Xcode 无法识别 FUITableViewDataSource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43061340/

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