Gheric Speiginer
Gheric Speiginer
@NathanaelA I'm not sure what you mean. Correct me if I am wrong, but I don't see a single case where you can't access a delegate/controller, and I don't think...
@NathanaelA I don't think you can add any overrides to the prototype chain (that will be called by the native runtime) any time ***AFTER*** "extend" is called (even adding to...
@NathanaelA if that’s the case then this issue is a non-issue.... let me try some more tests
@NathanaelA Unfortunately, I don't think you are correct, as this doesn't seem to work: ```ts if (frame.isIOS) { const UIViewControllerImpl = new page.Page().ios.constructor as typeof UIViewController; UIViewControllerImpl.prototype.preferredScreenEdgesDeferringSystemGestures = function() {...
> I don't see your idea being added, nor the bug we discovered preventing us from monkey patching the delegate after the fact @NathanaelA this issue (and the solution I...
@ginev Any update on fixing this by chance? Fixing this one issue would make it possible (even easy) to get around all of the limitations in using various iOS APIs...
Will the Worker be able to leverage FTL JIT compilation ? If not, it loses a lot of value for me. It should be possible to leverage FTL JIT compilation...
I'm decrypting messages using openpgpjs. In the main JS thread, this can pause the UI for up to 8 seconds. I have it now working in a hacked together web...
Perhaps the limitations you mention with the built-in JSC were unsuitable for the main JS Thread (in order to support performant access to native libraries, I'm guessing?), and these limitations...
Yes, a native library would work too (though I would have to create a plugin that wraps an appropriate library for each platform).