मैं Xcode 6.1 का उपयोग करते हुए एक नए स्विफ्ट संस्करण के लिए एक मौजूदा ऑब्जेक्टिव-सी टीवी शो ऐप को डुप्लिकेट कर रहा हूं और CoreData के साथ कुछ समस्याएं आ रही हैं।
मैंने 4 संस्थाओं का एक मॉडल बनाया है, उनके NSManagedObject उपवर्ग (स्विफ्ट में) का निर्माण किया है, और सभी फाइलों में उचित एप्लिकेशन लक्ष्य निर्धारित हैं ('संकलन स्रोत')।
जब भी मैं एक नई इकाई सम्मिलित करने का प्रयास करता हूँ तो मुझे यह त्रुटि मिलती है:
कोरडाटा: चेतावनी: इकाई 'शो' के लिए 'शो' नामक वर्ग को लोड करने में असमर्थ। इसके बजाय डिफ़ॉल्ट NSManagedObject का उपयोग करके कक्षा नहीं मिली।
कुछ टिप्पणियाँ:
कोर डेटा की बचत करते समय, मैं बैकग्राउंड थ्रेडिंग की अनुमति देने के लिए पेरेंट-चाइल्ड संदर्भ तरीके का उपयोग करता हूं। मैं इसका उपयोग करके ManagedObjectContext की स्थापना करके करता हूं:
lazy var managedObjectContext: NSManagedObjectContext? = {
// Returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.) This property is optional since there are legitimate error conditions that could cause the creation of the context to fail.
let coordinator = self.persistentStoreCoordinator
if coordinator == nil {
return nil
}
var managedObjectContext = NSManagedObjectContext(concurrencyType: NSManagedObjectContextConcurrencyType.MainQueueConcurrencyType)
managedObjectContext.persistentStoreCoordinator = coordinator
return managedObjectContext
}()
और डेटा का उपयोग करके बचत करके:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), { () -> Void in
var context = NSManagedObjectContext(concurrencyType: NSManagedObjectContextConcurrencyType.PrivateQueueConcurrencyType)
context.parentContext = self.managedObjectContext!
...rest of core data saving code here...
})