Lesson 12 - iOS ToDo app in Swift - Database migrations and sorting
In the previous lesson, iOS ToDo app in Swift - Custom TableViewCell, we added task priorities to our ToDo app in Swift for iOS.
We promised to perform database migrations and learn to sort data in today's iOS development tutorial.
Realm migrations
To migrate a database basically means to modify the database schema to
correspond to the new model. It's easy to do it in Realm, we just create a code
block in AppDelegate
, specifically in the following method:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool
Realm has a cool documentation where we can find everything needed. Our migration will look like this:
Realm.Configuration.defaultConfiguration = Realm.Configuration( schemaVersion: 1, migrationBlock: { migration, oldSchemaVersion in if (oldSchemaVersion < 1) { migration.enumerateObjects(ofType: ToDo.className()) { oldObject, newObject in newObject!["priority"] = 1 } } })
We'll place this whole block to the
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
Before buying this article, you have to buy the previous one
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
We'll learn to migrate databases of iOS apps which are already in AppStore. And also to sort and filter data (our objects) using Realm in Swift.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.