如果设备在+ 版本UIImageView
中,我正在尝试隐藏单元格。我想显示设备是否使用或更低版本?UITableView
iOS 6.0
UIImageView
iOS 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;
}