对不起,我是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;
}