标签: ios swift typechecking downcast
我想知道一个对象是否是一个不包含其子类型的类型。例如:
class Dog { } class Labrador: Dog { } //I want this to be false if pet is Dog { }