tfonfara
tfonfara
Sometimes I can reproduce a crash in the cacheKey method, at line 202: NSStringFromCGSize(_shadowOffset) but it's not a SIGSEGV it's an EXC BAD ACCESS. The stack trace referes to FXImageOperation:...
I'm testing it since 3 days now and at least I can say that it improves stability so far 👍 (0.2.0 version used to crash/hang up after a couple of...
I stumbled across the same question and found my solution here: https://ahmet.im/blog/grpc-http-mux-go/ Instead of `httpMux := http.NewServeMux()` just use `gin.Default()` Any solutions based on [cmux](https://github.com/soheilhy/cmux) didn't work for me due...
Actually the "subtotal" method in excel does automatically grouping that can be removed or adjusted very easy. If I use `SetCellFormula` this means that (1) I have to do all...
Additional info: once I call `goto(t)` the second time and the chart is at the correct time range the chart crashes on scrolling (100% cpu load, page not responding any...
@rizafran thanks for your reply. I have for sure nothing changed in the console, regarding integration in the app I once again followed [those steps](https://firebase.google.com/docs/app-distribution/set-up-alerts?platform=ios) to make sure I didn't...
@kornelski I've also tested a bit, unfortunately hiding the release notes doesn't help as @samdeane already expected because the nib still contains the class. But if I just remove the...
Another idea: I just noticed this marker: `WEBKIT_CLASS_DEPRECATED_MAC(10_3, 10_14, "No longer supported; please adopt WKWebView.")` If WKWebView would be supported this issue would be solved automatically 😊
Got it, what about a `if ([WebView class]) { ... }` or `if (NSClassFromString(@"WebView")) { ... }` check? 🤔 Like ``` if ([WebView class]) { WebView webView = [[[WebView] alloc]...