I\'m just learning Objective-C / Cocoa Touch and Core Data. So, what are the new possibilities to implement data storage in iOS App Projects that are written in pure Swift?
Here is another approach to adding CoreData to your Swift app. This approach hides the CoreData implementation details from the rest of the app. In the app, you use queries/updates like these:
Query("Order").sort("date").fetch()
or:
let newClient = Query("Client").create() as? Client
See Gist: https://gist.github.com/gk11/438c3f2883c5d7c0b0d8