fix From clauses not setting the NSFetchRequest's affectedStores property properly

This commit is contained in:
John Rommel Estropia
2016-06-05 17:19:20 +09:00
parent 0c8731c610
commit 2e4c9a7a25
3 changed files with 5 additions and 6 deletions

View File

@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.6.9</string>
<string>1.6.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>

View File

@@ -33,11 +33,10 @@ import CoreData
// http://stackoverflow.com/questions/14396375/nsfetchedresultscontroller-crashes-in-ios-6-if-affectedstores-is-specified
internal final class CoreStoreFetchRequest: NSFetchRequest {
@objc
override var affectedStores: [NSPersistentStore]? {
get { return self.safeAffectedStores }
set { self.safeAffectedStores = newValue }
get { return super.affectedStores }
set { super.affectedStores = newValue }
}
private var safeAffectedStores: [NSPersistentStore]?
}