Dmitry Obukhov

Results 34 comments of Dmitry Obukhov

I've updated the docs. So for now you could check where the instance is initialized before calling `[super init]` like this: ``` - (id)init { if (!self.isInitialized) { self =...

Thanks! It seems that it happens when Full Keyboard Access is set to All controls, I'll check and fix it soon.

I noticed that behavior a couple of times but wasn't able to reproduce it constantly. Here is (probably) related crash stack trace from our conversation in Slack: ``` #0 0x0000000100dddd53...

https://github.com/realm/RealmTasks/pull/68 contains the basic feature for adding new ToDos.

I have just a few suggestions: 1. Looks like `RealmSyncLoginManager.swift` was added by mistake 2. Text in label is truncated 3. There is a space added back to the app...

Looks good to me 👍 The only thing is that it looks like the list of initial tasks will be merged if launch the app on multiple devices, right?

`SyncUser.all` keeps only valid logged in users. If you log out the user, the corresponding `SyncUser` will be removed from that dictionary. There is no way to log in the...

Sync session uses incremental backoff in order to reconnect after the network is available, so currently reconnection doesn't happen immediately. The possible solution for this is to use Apple's Reachability...

@srpadronm please try to enable all logs and check if there any errors: ```Swift SyncManager.shared.logLevel = .all ```

Thanks for the info @srpadronm! It's probably a bug, we'll take a closer look on it.