【やりたいこと】
realmでグループ1,2,3,4,5で昇順に分けて更にその中であいうえお昇順に並べ替えたいです。
swift
1 2let sortRealm = realm.objects(todo.self).sorted(byKeyPath: "あいうえお順", ascending: true) 3
【試したこと】
以下のサイトを参考にしてコードを書いてたのですがエラーになりました。
https://blog.ch3cooh.jp/entry/20160203/1454464216
swift
1 2let sortProperties = [ 3 SortDescriptor(property: "あいうえお順", ascending: false), 4 SortDescriptor(property: "グループ順", ascending: true) ] 5
拙い質問で恐縮ですが教えていただけると幸いです。
環境
【Xcode】11.4【macOS】 Catalina 10.15.4【Swift】5.2【iOS】13.3.1
データ(class/struct)の定義とか、試してみたコードとかを質問に追記してください。
回答1件
あなたの回答
tips
プレビュー