usage of isMemberOfClass; returning false

前端 未结 3 1183
生来不讨喜
生来不讨喜 2021-01-16 10:23

In the code below I thought the second condition would be true, but it is turning out as false. Am I missing something? Please help me understand.

NSArray *a         


        
3条回答
  •  天涯浪人
    2021-01-16 11:27

    NSArray is a class cluster. When you create an object of NSArray, internally it creates the object from its cluster. It adds simplicity to avoid creation of different type of objects depending upon the requirements.

    For such cases you should use the function isKindOfClass. It checks the completer hierarchy to identify the kind of object.

提交回复
热议问题