Mark Rowe
Mark Rowe
Note that the Realm Browser's keychain item titled "Realm Browser" is not the same as the `io.realm.sync.keychain` item. The former stores previously-used usernames and passwords, while the latter stores the...
Isn't it necessary to wait for the initial download with an empty schema in order to support opening synced Realms that the user has read-only access to?
Another request at https://stackoverflow.com/questions/47315797/how-do-i-open-an-ios-simulator-local-realm-file-in-realm-studio/47316089.
In Realm's unit tests we call the private `+[RLMRealm resetRealmState]` method after each test to clean up any cached realm instances. If you add a call to that method in...
Thanks for confirming. We should consider exposing `+resetRealmState`, or something like it, for sake of people writing unit tests that use Realm.
When we have an update to share, we'll do so here.
To test code using `-addNotificationBlock:` you can use `XCTestExpectation`. XCTest will run the runloop until the expectation is fulfilled, giving the notification block an opportunity to run. We use this...
I'm not sure I follow. There are plenty of asynchronous APIs that are used in typical apps, so surely you need to be able to cope with testing code that...
The simplest solution is to pass the configuration along with the thread safe reference, so you can resolve the reference in the appropriate Realm: ```objc++ -(void)test{ RLMRealm *realm1 = [RLMRealm...
You make a good point. We'll look to make this available in the future.