什么是Swift类型?

我想将一个类型的数组传递给一个函数 – 但我不确定什么是
Swift类型的类型.

假设我有两个类:
MyClass和AnotherClass.
我想要一个像这样的数组[MyClass,AnotherClass].
阵列的类型是什么?

最佳答案 它将是AnyClass类型,它是所有对象类型的基础.

func checkClassTypes(types: [AnyClass]) {
  types.forEach { type in
    // Your custom classes don't necessarily have to subclass from NSObject.
    print(type is NSObject.Type)
  }
}

checkClassTypes([MyClass.self, AnotherClass.self])
点赞