我遇到的情况是我需要50k个DB文件,我需要将它们分成100个部分。
我在下面这样做,这会导致内存问题。有没有其他选择。
var numberOfRows:Array<Int> = [0] // This array I am using
for sectionName in sectionKeys {
let count = realmResults.filter("%K == %@", self.getSectionNameKeyPath(), sectionName).count
numberOfRows[index] = count
index += 1
}