0
這部分代碼:排序錯誤的RealmSwift
var posts: Results<Post> {
get {
return realm.objects(Post.self).sorted(byKeyPath: "id", ascending: false)
}
}
返回的ID等
96,950,94,930
我的交id爲String
。如何在不使id Int
的情況下獲得正確的排序對象。
使用'sorted(by:)'並提供您自己的SortDescriptor。 – njzk2