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
模块的计划:
- 颜色基于
log
、info
、warn
、error
,带有帮助色盲(我)的选项
- 可根据每个用户的喜好自定义选项
- 整理终端以真正理解从应用程序记录的内容
到目前为止我尝试过的:
- tns-core-module
console
- 尝试了很多不同的东西;甚至无法弄清楚 iOS 是如何登录到终端的
- tns-core-module
trace
- 尝试调用 trace.write
但不成功
- 尝试 Swift 的
print
和 println
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
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
模块的计划:
- 颜色基于
log
、info
、warn
、error
,带有帮助色盲(我)的选项 - 可根据每个用户的喜好自定义选项
- 整理终端以真正理解从应用程序记录的内容
到目前为止我尝试过的:
- tns-core-module
console
- 尝试了很多不同的东西;甚至无法弄清楚 iOS 是如何登录到终端的 - tns-core-module
trace
- 尝试调用trace.write
但不成功 - 尝试 Swift 的
print
和println
In my attempt to create a cleaner
console.log
, how do I callNSLog
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