I'm creating an iOS App using Realm. I've correctly installed all the frameworks as well as the Realm Browser and would now like to see 1. if my data structure has been created and implemented in realm appropriately and 2. updates to the data file when they are made.
I've followed the instructions here How to find my realm file? and have gotten the path:
file:///Users/carltonivy/Library/Developer/CoreSimulator/Devices/464A53E1-0317-408F-B851-EA758199BA61/data/Containers/Data/Application/B8754857-4A4D-43B9-8E33-57113E27A545/Documents/default.realm
as the result, but when I navigate there I can't find any kind of default.realm, only files ending in .sqlite
Questions/Resolutions
The only things I've done in my project are creating models/relationships and added import RealmSwift
to my .swift files.
Do I need to add some blocks of code somewhere to initialize the .realm file/database? Is there some kind of data layer I need to create like something you would use with MVC C# (the only other language I have experience in)? Am I missing anything conceptually about Realm? I've used code first databases many times before.
Thanks.