我可以在 NativeScript 中使用本机 JAVA/SWIFT 代码吗?我想将 cookie 存储到 cookie 管理器中,但没有提供插件。那么,是否可以将本机代码直接使用到 NativeScript 中,或者我必须自己为此任务创建一个插件。n
问问题
1534 次
1 回答
4
答案是肯定的。您可以在 NativeScript 中使用本机(iOS 和 Android)语言编写,这是 {N} 框架的最大好处,但您可以使用对 Swift 不太确定的 Objective-C 和 Java(有一些方法可以阅读此处)。我建议你阅读这篇关于 NativeScript 中的 iOS 和 Android 运行时的文章:
- iOS 运行时: http: //docs.nativescript.org/runtimes/ios/Overview.html
- Android 运行时: http: //docs.nativescript.org/runtimes/android/overview.html
这里有些例子:
- iOS Hello World 应用程序: http: //docs.nativescript.org/runtimes/ios/getting-started/HelloWorld.html
- Android Hello World 应用程序: http: //docs.nativescript.org/runtimes/android/getting-started/hello-world.html
于 2017-05-22T08:09:44.843 回答