現時点では、UITableView
2 行の and があります。写真のように。の配列によって設定されViewDidLoad
ます。
ViewDidLoad
- (void)viewDidLoad {
[super viewDidLoad];
self.title = NSLocalizedString(@"Analysis", @"Badminton Analysis Tool");
NSMutableArray *array = [[NSMutableArray alloc] initWithObjects:@"Statistical Analysis", @"Graphical Analysis", nil];
self.booksArray = array;
}
didSelectRowAtIndexPath
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSInteger row = [indexPath row];
if (self.statViewController == nil) {
StatViewController *statDetail = [[StatViewController alloc] initWithNibName:@"StatViewController" bundle:nil];
self.statViewController = statDetail;
}
statViewController.title = [NSString stringWithFormat:@"%@", [booksArray objectAtIndex:row]];
[self.navigationController pushViewController:statViewController animated:YES];
}
現時点では、どちらかの行をクリックすると、「統計分析」のみを目的とした同じビューにプッシュされます。グラフィカル分析のクリックを無効にしたいと考えています。「グラフィカル分析」の選択を無効にするにはどうすればよいですか?
ありがとう。