Description Returns a Boolean value that indicates whether the receiver is an instance of given class or an instance of any class that inherits from that class. (required) // 意思是返回一个BOOL类型的值,该值表示 接收者 是 给定类的实例 还是从 该类继承的任何类 的实例。
isMemberOfClass 实例方法
1 2 3 4 5 6
- (BOOL)isMemberOfClass:(Class)aClass
Description Returns a Boolean value that indicates whether the receiver is an instance of a given class. (required) // 意思是返回一个BOOL类型的值,该值表示 接收者 是否为给定类的实例
Description Returns a Boolean value that indicates whether the receiving class is a subclass of, or identical to, a given class. // 意思是返回一个BOOL类型的值,该值表示调用 该方法的类 是不是 参数类的一个子类 或者 是这个类的本身