@try @catch阻止在iOS 6上工作但在iOS 5上没有

时间:2013-02-20 01:46:08

标签: iphone ios ipad try-catch

我有一个在单元格中有2个子视图的tableview(带有标签的小缩略图),如果没有任何内容可以加载(当只有第一个子视图有要加载的图像和标题时)我想要隐藏第二个子视图。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *reuse = @"reuse";
    ContentTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuse];
    if (cell == nil) {
        cell = [[[NSBundle mainBundle] loadNibNamed:[Utils buildNibNameFromPrefix:@"ContentTableViewCell"] owner:self options:nil] objectAtIndex:0];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
    }

    cell.cellIndex = indexPath.row;

    NSUInteger selectedIndex = [Utils getIndexForContentTitle:[Utils getContentBookmark]];
    NSUInteger titleIndex = indexPath.row * self.noOfContentPerCell;
    NSUInteger cellIndex = NSNotFound;
    for (int i = 0; i < self.noOfContentPerCell; i++) {
        @try {
            if (titleIndex == selectedIndex) {
                cellIndex = i;
            }

            NSArray *content;
            if ([[NSUserDefaults standardUserDefaults] boolForKey:@"unlock"] == NO) {
                content = CONTENT_INDEXS;
            }
            else {
                content = CONTENT_INDEXS_UNLOCKED;
            }

            NSString *title = [content objectAtIndex:titleIndex];
            [cell setTitle:title forContentAtIndex:i];

            NSString *thumbnail;

            if ( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone )
            {
                thumbnail = [NSString stringWithFormat:@"%@-iphone-thumbnail.jpg", title];
            }
            else
            {
                thumbnail = [NSString stringWithFormat:@"%@-ipad-thumbnail.jpg", title];
            }

            [cell setImageNamed:thumbnail atIndex:i];

            [cell showContainerAtIndex:i];
        }
        @catch (NSException *exception) {
            [cell hideContainerAtIndex:i];
        }
        titleIndex++;
    }

    return cell;
}

它可以在iOS 6上运行,如果没有要加载的内容,@ catch隐藏了这个子视图,但是在iOS 5崩溃发生在:

NSString *title = [content objectAtIndex:titleIndex];

1 个答案:

答案 0 :(得分:7)

这看起来很傻 - 除非别无其他办法,否则我通常讨厌Try/Catch - 为什么不检查该集合上是否存在index - 换句话说,不要查看是否会有error,而是检查会导致error条件并处理该问题。