jasssonpet
jasssonpet
We should generate trampolines for: - [ ] Functions (call) - [ ] Interface - static methods (call and callback) - [ ] Interface - instance methods (call and callback)...
Proof of concept to list CSS files in the resources pane: ```javascript __registerDomainDispatcher("CSS", class CSSDomainDebugger { enable() { var bundlePath = NSBundle.mainBundle.bundlePath; var cssFilePaths = NSBundle.pathsForResourcesOfTypeInDirectory("css", NSString.pathWithComponents([bundlePath, "app"])); // TODO:...
We had a PR do a similar thing (https://github.com/NativeScript/ios-runtime/pull/408) but it didn't get merged. You can look at the workaround there.
Hey, @mschahczinski, can you provide the crash log of the app. Also, can you give us some more details about the crash so we can reproduce it on our side.
I've created a new app and followed the guide described in `nativescript-plugin-firebase` but I couldn't reproduce the issue. I will try it later with a different permission. From the crash...
I just want to reference our Gameraww example in this issue, which uses a storyboard: https://github.com/NativeScript/ios-runtime/tree/master/examples/Gameraww
Maybe this could be of help: https://github.com/NativeScript/ios-runtime/pull/408?
If you want to try them out now, you'll have to checkout [this branch](https://github.com/NativeScript/ios-runtime/tree/buhov/web-workers) and create an Xcode project as instructed in the readme. After that open the [HelloWorld](https://github.com/NativeScript/ios-runtime/tree/buhov/web-workers/examples/HelloWorldApp/app) target...
Using Swift Class Names with Objective-C APIs: https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/WritingSwiftClassesWithObjective-CBehavior.html#//apple_ref/doc/uid/TP40014216-CH5-ID107
The Swift limitation isn't limited to CocoaPods only, so maybe we should add it to a broader article about using third-party native code.