gpt4 book ai didi

ios - 在 Realm 中追加结果数组

转载 作者:行者123 更新时间:2023-12-01 17:28:47 27 4
gpt4 key购买 nike

大家早上好,

我有一个表格 View ,它显示从 2 个不同类保存的对象。我要将这些结果组合成一个数组以显示在 tableView 中。这是我的代码:

import UIKit
import RealmSwift

class BookmarksVC: UIViewController,UITableViewDelegate,UITableViewDataSource {

var articleList: Results<DynamicObject>!
var documentList: Results<DynamicObject>!
var list = [Any]()
var article: Any!
var searchBar:UISearchBar = UISearchBar(frame: CGRect(x: 0, y: 0, width: 280, height: 20))

@IBOutlet weak var tableView: UITableView!

override func viewDidLoad() {
super.viewDidLoad()
tableView.register(UINib(nibName: "BookmarkCell", bundle: nil), forCellReuseIdentifier: "bookmarkCell")
tableView.delegate = self
tableView.dataSource = self
drawNavBarUI(navigationItem: self.navigationItem, searchBar: searchBar)
loadDataAndUpdateUI()
}

func loadDataAndUpdateUI() {
articleList = realm.dynamicObjects(NewsArticle.className())
documentList = realm.dynamicObjects(Documents.className())
list.append(articleList)
list.append(documentList)
tableView.setEditing(false, animated: true)
tableView.reloadData()
}

但结果是:

enter image description here

它导致 tableview 只显示了 2 个单元格。我尝试使用 append(ContentsOf:) 但 Xcode 将其强制返回到 append()。这是我第一次使用Realm,所以我可能对它没有深入的了解。所以任何人都可以帮我解决这个问题吗?感谢你们的阅读,并为我糟糕的英语感到抱歉。

最佳答案

来自Realm的Katsumi在这里。不建议复制Results反对Array .它失去了Results的有用能力例如自动更新、延迟加载等。另外,使用 DynamicObject失去类型安全。

您可以使用 Results即使您有多个 Results,也可以直接作为数据源对象。如下所示:

class BookmarksVC: UIViewController,UITableViewDelegate,UITableViewDataSource {
var articleList: Results<NewsArticle>!
var documentList: Results<Documents>!

@IBOutlet weak var tableView: UITableView!

override func viewDidLoad() {
super.viewDidLoad()
...

loadDataAndUpdateUI()
}

func loadDataAndUpdateUI() {
articleList = realm.objects(NewsArticle.self)
documentList = realm.objects(Documents.self)

...

tableView.reloadData()
}


func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return articleList.count + documentList.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
if indexPath.row < articleList.count {
let article = articleList[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "bookmarkCell", for: indexPath) as! BookmarkCell
cell.configureCell(article: article)
return cell
} else {
let document = documentList[indexPath.row - articleList.count]
...
}
}

...

}

关于ios - 在 Realm 中追加结果数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43579970/

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