申し訳ありませんが、私は IOS 開発の初心者です。
5 つのセルを含むテーブル ビューがあります。
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;
}