在我的项目中,我从facebookSDK获取数据,我需要显示图像(如果有),消息(如果有),喜欢的数量,评论数量。
现在我的数据中有一张图片,但邮件不可用。我的字符串显示空信息。现在我需要提出3个条件。
您可以理解我的问题可能来自以下代码。
--harmony
现在我很困惑,我怎么能为我的代码制定条件。
请帮助我。
谢谢。
答案 0 :(得分:1)
试试这个:
for (int i = 0; i<self.arrData.count; i++)
{
//your code
if (strImage1 != nil && [strCommentCount intValue] != 0 )// if image is not available.
{
NSLog(@"Both image and msg are available");
[imageView1 setImage:strImage1 setContentText:strComment like:strLike comment:strCommentCount time:strTime];
}
else
{
if ([strCommentCount intValue] != 0)
{
NSLog(@"no image");
[imageView1 setContentText:strComment like:strLike comment:strCommentCount time:strTime];
}
else
{
NSLog(@"no msg");
[imageView1 setImage:strImage1 like:strLike comment:strCommentCount time:strTime];
}
}
}