iOS 如何在 Nativescript 中调用 NSLog

How To Call NSLog in Nativescript on iOS

Programming Nativescript on a laptop with a terminal only 100x wide looks like this:

https://s3.postimg.org/arqwz0utv/Screen_Shot_2016_08_16_at_11_29_39_PM.png

我不了解你,但我什至看不到我从我的应用程序中记录的内容...

这是我要创建的 console.log 模块的计划:

到目前为止我尝试过的:

In my attempt to create a cleaner console.log, how do I call NSLog inside my Nativescript app?

我在 Android 上调用 android.util.Log.v 没问题,所以这部分都设置好了。

您无法在 iOS 运行时访问 Variadic Objective-C 方法。 这是限制列表

限制 无法从 JavaScript 访问以下成员:

  • 工会
  • 可变参数Objective-C 方法、函数指针、块
  • 具有常量数组成员的结构
  • 向量
  • 内联函数
  • int64_t, uint64_t 超出 [-2^53, 2^53] 范围
  • long double, int128_t, uint128_t

Link 到文档部分:http://docs.nativescript.org/runtimes/ios/Limitations.html