I am currently using Realm as an offline database in the iOS app.
if I were to add support for Realm mobile platform, will it automatically grab all the Realm user data and migrate it to the cloud?
Or
is there some code that is needed to move the data to the cloud?
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
- Attempt to present UIAlertController on View Contr
Realm Mobile Platform is not a cloud service but consists of Realm Object Server, a server application you can run on your own (supports various flavors of Linux) and Realm Mobile Database. If you are already using Realm Mobile Database in your app today, you cannot just upgrade and expect those Realms to sync with Realm Object server. Instead you much create synchronized Realms through the new API and copy data from the existing Realm into the synchronized Realm.