gpt4 book ai didi

ios - 处理来自 json 的 0 值

转载 作者:行者123 更新时间:2023-11-29 01:49:16 25 4
gpt4 key购买 nike

我想处理来自 json 的 int 值,即 0。这是我的代码,但它无法正常工作,而且我的应用程序在运行时崩溃。

UILabel *like=(UILabel *)[cell viewWithTag:3];
if ([[json objectAtIndex:indexPath.row ]objectForKey:@"likes"] == (id)[NSNull null]) {
like.text=@"-";
}
else{
like.text=[[json objectAtIndex:indexPath.row]objectForKey:@"feed_text"];
}

这是我的回复

{
"feed_id": "2",
"group_id": "1",
"group_name": "Church",
"feed_text": "Hi+this+is+my+first+Post+in+Church+group",
"likes": 0,
"comments": 0,
"latitude": "21.180407400000000000",
"longitude": "66308dbc30ae53223f1213f793700381"
}

有人知道如何处理零值吗?谢谢

最佳答案

这是我用来处理来自 json 的 0 值的最终代码...

UILabel *like=(UILabel *)[cell viewWithTag:11];
NSString *lbllike =[[json objectAtIndex:indexPath.row ]objectForKey:@"likes"];
like.text = [NSString stringWithFormat:@"%@",lbllike];

你只需要传递任何参数并在 UILabel 上设置标签,例如我设置了 11 并且它的工作就像一个魅力。我希望它有用。

谢谢

关于ios - 处理来自 json 的 0 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31582369/

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