0

エラー--->名前をクリックするとアプリケーションがクラッシュします...修正--->テーブル内の名前をクリックすると、別のビューにジャンプする必要があります...

私のコードは

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [ListArr objectAtIndex:indexPath.row];
    ListData *oList = [[ListData alloc] initWithNibName:@"ListData" bundle:nil];
    NSString *psCatId = [NSString stringWithFormat:@"%d",indexPath.row+1];
    oList.psId = psCatId;
    [self presentModalViewController:oList animated:YES];
    [oList release];    
}
4

0 に答える 0