标签: ios arrays swift byte
我在目标c项目的头文件中有这一行。
static const char my_bytes[] = { -30, 10, 90}
我想用swift写它,我怎么能这样做?
答案 0 :(得分:2)
let my_bytes : [CChar] = [-30, 10, 90]
CChar只是Int8的别名。您可以在Interacting with C API中了解有关它的更多信息。
CChar
Int8