gpt4 book ai didi

ios - 如何检查 array 在 ios sdk 中是否为 null 或为空?

转载 作者:可可西里 更新时间:2023-11-01 05:01:38 25 4
gpt4 key购买 nike

我想检查我的 Bond 是否为空或 null 和 NULL 值。

{
Bonds =(
{
DOB = "12/09/1988";
about = "";
}
);
User = {
city = CA;
email = "karmhadadmtl@gmail.com";
};
success = True;
}

第二次获取数据如何查看Bond key

{
Bonds = Null;
User = {
city = CA;
email = "developer.i12@gmail.com";
};
success = True;
}

最佳答案

您只需检查 nil

if(data[@"Bonds"]==nil){
NSLog(@"it is nil");
}

if ([data[@"Bonds"] isKindOfClass:[NSNull class]]) {
NSLog(@"it is null");
}

关于ios - 如何检查 array 在 ios sdk 中是否为 null 或为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27440280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com