我有一个NSArray
with NSDictionaries
。一个数组中的一个字典键包含一个值。我想NSDictionary
用该值检索 。
我的数组:
Array: (
{
DisplayName = "level";
InternalName = "Number 2";
NumberValue = 1;
},
{
DisplayName = "PurchaseAmount";
InternalName = "Number 1";
NumberValue = 3500;
}
)
所以,我想获取包含DisplayName
设置为PurchaseAmount
(不区分大小写)的字典。
我怎样才能做到这一点?