ios-jsc
ios-jsc copied to clipboard
NativeScript for iOS using JavaScriptCore
As a follow up to https://github.com/NativeScript/ios-runtime/issues/242 we can additional logic in the debug build: - [x] Show warning/error for symbols that we have metadata for but are not available at...
I have an issue similar to #543 but with Admob. The plugin owner already added instructions to preserve the symbols (https://github.com/EddyVerbruggen/nativescript-admob/blob/master/platforms/ios/build.xcconfig). But unfortunately it still does not have the symbols...
``` let SessionDelegate = NSObject.extend({ sessionActivationDidCompleteWithStateError : function ( session, activationState, error ) { console.log( "Session Activated" ); }, sessionDidBecomeInactive : function ( session ) {}, sessionDidDeactivate : function (...
This way we can remove the complex handshaking between the CLI and the app. XPC requires using some private APIs, but since debugging is disabled in release we can safely...
We were running to the issue where the generated metadata for iOS contained references to AdSupport.framework causing the App being rejected by Apple (or at least causing our customer to...
For example: https://github.com/danielgindi/ios-charts - [x] Respect `objc_runtime_name` attribute - [ ] https://github.com/NativeScript/ios-runtime/issues/95 - Swift supports namespaces, so there could be collisions - [x] https://github.com/NativeScript/ios-runtime/pull/274 - Support Swift name mangling
Currently when using the pure-JS extend method, you have ability to specify the name of the Obj-C class that will be created. For the TS extend version this is limited...
Currently the context menu shows only Reload and Inspect Element, but should also show all menu items reported from the frontend. For example if you open a context menu over...
If we have something like ``` objective-c - (id)test { return [[BubbleChartData alloc] init]; } ``` where BubbleChartData is a Swift class exposed to Objective-C, the bridge would try to...
I have a requirement to do preloading of video in our app when a thumbnail comes into view. Prescribed way to do this is by using `AVAssetDownloadURLSession`. We used this...