我收到了来自JSON
的响应,并且工作正常,但是我需要检查一些null
值,
我找到了不同的答案,但似乎仍无法正常工作,
NSArray *productIdList = [packItemDictionary objectForKey:@"ProductIdList"];
我尝试过
if ( !productIdList.count ) //which breaks the app,
if ( productIdList == [NSNull null] ) // warning: comparison of distinct pointer types (NSArray and NSNull)
那到底是怎么回事?如何解决此问题并检查数组中的
null
?谢谢!
最佳答案
使用强制转换消除警告:
if (productIdList == (id)[NSNull null])
如果
productIdList
实际上是[NSNull null]
,那么执行productIdList.count
将引发异常,因为NSNull
无法理解count
消息。