1

TableView である 1 つのページを作成します。この TableView には、このコードから多くのセルがあります。

@interface ViewController : UITableViewController
{
    NSMutableArray *animal;
    NSMutableArray *color;
    NSMutableArray *all;
}
@implementation ViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    animal = [[NSMutableArray alloc]initWithObjects:@"Lion",@"Tiger",@"Dog",@"Cat",@"Sheep",@"Wolf", nil];
    color = [[NSMutableArray alloc]initWithObjects:@"Blue",@"Red",@"Yellow",@"Green",@"Black", nil];

    all = [[NSMutableArray alloc]init];
    [all addObjectsFromArray:animal];
    [all addObjectsFromArray:color];
}

動物細胞配列をクリックするタイミングが必要です次のページに進みます(次のページは
自己同一ルートのテーブルビューです。つまり、動物細胞配列テーブルビューのページを更新してクリックしたセルをクリックすると情報が表示されます)

4

2 に答える 2

0

リンクを参照してください (テーブルから詳細ビューをロードする例があります)、 https://www.youtube.com/watch?v=0jt0vcrzq4A

于 2013-04-15T14:05:23.710 に答える
0

これを試して

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
 //if need any condition check here
 YourViewController *YVC = [[YourViewController alloc] initWithNibName:nil bundle:nil]]  
 [self.navigationController YourViewController:YVC animated:YES];

}
于 2013-04-15T12:16:24.373 に答える