抱歉,我是IOS开发的新手。
我有一个包含五个单元格的表视图。
1个单元格将切换到表格视图,另外4个单元格将切换到查看控制器。
从下面的代码中,单元格“Attraction”将转到表视图,另一个单元格将转向查看控制器。
我该怎么做?
- (void)viewDidLoad
{
[super viewDidLoad];
// Initialize table data
mainMenu = [NSArray arrayWithObjects:@"Introduction", @"History", @"Attractions", @"Culture", @"About", nil];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [mainMenu count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *tableIdentifier = @"MainMenuCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:tableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tableIdentifier];
}
cell.textLabel.text = [mainMenu objectAtIndex:indexPath.row];
return cell;
}
答案 0 :(得分:1)
使用静态表格视图单元格。这是界面构建器中表视图的设置。这是可行的设置,因为您只有固定数量的五个单元格。
如果仍需要动态单元格,则无法使用界面构建器将segue分配给特定单元格。相反,您必须实现didSelectRowAtIndexPath
并通过performSegueWithIdentifier
在代码中执行segue。