ios-jsc icon indicating copy to clipboard operation
ios-jsc copied to clipboard

NativeScript for iOS using JavaScriptCore

Results 102 ios-jsc issues
Sort by recently updated
recently updated
newest added

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...

severity: low
feature

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...

severity: medium

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...

feature

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

feature

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...

feature

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...

severity: low
feature

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...

bug

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...