0
clear
方法已在RealmResults
0.89.1RealmResults.clear()拋出NotSupportedException異常
我已經使用這個方法在我的代碼一些地方。 最新的文檔沒有關於它的任何更新。 從Realm
刪除所有結果的新方法是什麼?
clear
方法已在RealmResults
0.89.1RealmResults.clear()拋出NotSupportedException異常
我已經使用這個方法在我的代碼一些地方。 最新的文檔沒有關於它的任何更新。 從Realm
刪除所有結果的新方法是什麼?
RealmResults.clear()
現在拋出UnsupportedOperationException。改爲使用RealmResults.deleteAllFromRealm()
。
https://github.com/realm/realm-java/blob/master/CHANGELOG.md
難道'deleteAllFromRealm()'做的伎倆? –