0

是否可以将 UITable 中的静态单元格链接到不同的故事板?

如果是这样..如何?

4

1 回答 1

0

我想到了。万一其他人遇到这个问题,这里的解决方案..

确保在您的主控制器上添加所有 .h 文件对我来说,它们将是

#import "tabbar26.h"

现在这是我添加的使它工作的代码

- (UITableViewCell *)tableView:(UITableView *)tableView
     cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [super tableView:tableView
                   cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryNone;

NSUInteger row = [indexPath row];


            if (row == 1)
        {
            NSLog(@"hi");

        }

        if (row == 27)
        {
        }
 }

return cell;
}

上面这部分,真的不需要。我只是用它来记录。

下面是你真正需要的:)

 -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath      {

NSUInteger row = [indexPath row];

if (row == 0)
{
    NSLog(@"hi2");
    }

if (row == 25)
{
    NSLog(@"bye2");
    UIStoryboard *tabbar26 = [UIStoryboard storyboardWithName:@"tabbar26" bundle:nil];
       UIViewController *Tab1_ViewController = [tabbar26 instantiateInitialViewController];
     [self.navigationController pushViewController:Tab1_ViewController animated:(YES)];
}

[self.tableView reloadData];
}
于 2012-11-29T16:31:07.227 回答