Issue:
Nothing happens if someone clicks on the realm menu-action:
Actual problem in code:RealmFile.fullPath() returns something like this:
/Users/halo/Library/Developer/CoreSimulator/Devices/BC12493D-1D2A-48EB-8245-CF8C6142F264/data/Containers/Data/Application/3A1D8D04-FFAB-471B-A6A6-8955E5A8B9B2/Documentsdefault.realm
(the / after Documents is missing).
Solution:
Make sure that RealmFile.path always ends with a slash.
Issue: Nothing happens if someone clicks on the realm menu-action:
Actual problem in code:
RealmFile.fullPath()
returns something like this:/Users/halo/Library/Developer/CoreSimulator/Devices/BC12493D-1D2A-48EB-8245-CF8C6142F264/data/Containers/Data/Application/3A1D8D04-FFAB-471B-A6A6-8955E5A8B9B2/Documentsdefault.realm
(the/
after Documents is missing).Solution: Make sure that
RealmFile.path
always ends with a slash.