-[NSNull countByEnumeratingWithState:objects:count:]: unrecognized selector sent to instance XXXXX

被枚举对象是个NULL值。

这个问题我当时遇到是因为获取到了一个null的数组,然后在其中进行遍历

也就是

for(id a in [NSNull null]){

}

解决方法,在遍历前加个判断

你可能感兴趣的:(-[NSNull countByEnumeratingWithState:objects:count:]: unrecognized selector sent to instance XXXXX)