3

我记得 Swift 中有一个 Byte 数据类型,但我大约六个月没有做过任何 Swift 编程。

现在,当我在 iOS 操场上写作时:

//: Playground - noun: a place where people can play
var str = [Byte]

我收到一个错误:Use of unresolved identifier 'Byte'

我一直在谷歌搜索,找不到任何关于 Byte 数据类型的文档,但我很确定我以前用过它。

这是怎么回事?

4

1 回答 1

5

现在,你不能使用这种类型的数据,实际上它是一个 8 位UInt8类型的另一个名称,现在你必须使用UInt8

来自MacTypes.h

...
/*********************************************************************************

 Old names for types

*********************************************************************************/
typedef UInt8 Byte;
...

UInt8这是类型的旧名称

于 2015-11-24T13:57:12.027 回答