Bharat Dodeja
Bharat Dodeja
I am getting this Crash too. @wasabeef any fix for this issue so far?
While list is getting reloaded, I keep getting following warning in my XCode's log: void SendDelegateMessage(NSInvocation *): delegate (webView:resource:didFinishLoadingFromDataSource:) failed to return after waiting 10 seconds. main run loop mode:...
I have got the solution to the issue. store.removeAll() was causing delay in refreshing the store. It has been replaced with following steps: store.suspendEvents(); store.removeAll(true); store.resumeEvents(true); store.load(); Now list gets...