ios检查是否nsarray == null

前端之家收集整理的这篇文章主要介绍了ios检查是否nsarray == null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我收到了 JSON的一些响应,并且工作正常,但是我需要检查一些空值,

我找到不同的答案,但似乎不工作,

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消息.

原文链接:https://www.f2er.com/iOS/329226.html

猜你在找的iOS相关文章