我正在尝试使用 parse.com 上的字符串来设置 UILabel 中的文本。在 Parse 中,我有一个名为“isItemOnSpecial”的字符串列,如果该项目处于特殊状态,我会将其设置为“是”。如果字符串设置为yes,那么我希望UILabel 显示来自specialPrice 列的字符串,否则我希望隐藏UILabel。这是我的代码:
// This is where I am setting up my tableViewCell//
NSString *itemOnSpecial = [object objectForKey:@"isItemOnSpecial"];
if ([itemOnSpecial isEqualToString:@"yes"]) {
UILabel *specialLabel = (UILabel*) [cell viewWithTag:5];
specialLabel.text = [object objectForKey:@"specialPrice"];
} else {
UILabel *specialLabel = (UILabel*) [cell viewWithTag:5];
[specialLabel setHidden:true];
}
当我使用此代码运行应用程序时,UILabel 始终设置为隐藏。对此的任何帮助将不胜感激,它一直困扰着我很长时间。
谢谢你的时间。