OStack程序员社区-中国程序员成长平台

标题: ios - 在 UITableView 自定义单元格中隐藏 UIImageview [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 04:02
标题: ios - 在 UITableView 自定义单元格中隐藏 UIImageview

如果设备是 iOS 6.0 + 版本,我试图在 UITableView 单元格中隐藏 UIImageView。如果设备使用 iOS 6.0 或更低版本,我想显示 UIImageView 吗?

下面的代码对我不起作用。我可以在两个版本中看到 UIImage

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
    //NSLog(@"%@",recentBookName);
    static NSString *CellIdentifier = @"Cell";
    GMMListViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    cell.NameLabel.text=[BookName objectAtIndex:indexPath.row];
    cell.authorLabel.text=[AuthorName objectAtIndex:indexPath.row];

    if([[[UIDevice currentDevice]systemVersion] floatValue]<6.0){
        cell.rupeeSymbol.hidden=NO;

    }else{
     cell.rupeeSymbol.hidden=YES;

    }

return cell;
}



Best Answer-推荐答案


添加以下代码

#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)

到您的 projectName-Perfix.pch 文件,以便您可以从项目中的任何位置访问它。

上面的代码不需要做额外的重复工作。

并且只需放置诸如 (项目中的任何位置)之类的条件

if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"6") )
{
   // do your stuff for iOS >= 6 
}
els
{
  // do your stuff for iOS <= 6
}

关于ios - 在 UITableView 自定义单元格中隐藏 UIImageview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18670114/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4