OC中定义了全局变量 BOOL close[30];在swift中应该怎样定义?
认证0级讲师
As follows, the initialization of the Bool array is all false and the length is 30
// 在全局区域 public var close = [Bool](repeating: false, count: 30)
As follows, the initialization of the Bool array is all false and the length is 30