2

如果设备在+ 版本UIImageView中,我正在尝试隐藏单元格。我想显示设备是否使用或更低版本?UITableViewiOS 6.0UIImageViewiOS 6.0

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

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)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;
}
4

1 回答 1

4

添加以下代码

#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
}
于 2013-09-07T05:52:16.477 回答