pushViewController из ячейки в didSelectRowAtIndexPath для отображения различного текстового содержимого для каждой ячейки при нажатии - PullRequest
0 голосов
/ 13 января 2012

Я хочу выдвинуть контроллер представления для каждой выбранной ячейки, чтобы показать различное текстовое содержимое для каждой ячейки при нажатииЯ использую для didSelectRowAtIndexPath правильно.

Таблица Am

#import "table A.h"
#import "fordviewcontroller.h"

@implementation table_A

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

- (void)didReceiveMemoryWarning
{
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

    // Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{    
    [super viewDidLoad];

   cars=[[NSArray alloc]initWithObjects: @"ford",@"grand AM",@"nissan",nil];

    self.title = @"cars";


}
- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [cars count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.text=[cars objectAtIndex:indexPath.row];    

    return cell;
}



#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Navigation logic may go here. Create and push another view controller.

     fordviewcontroller *detailViewController = [[fordviewcontroller alloc] initWithNibName:@"fordviewcontroller" bundle:nil];
     // ...
     // Pass the selected object to the new view controller.
     [self.navigationController pushViewController:detailViewController animated:YES];

}

@end

1 Ответ

1 голос
/ 13 января 2012

Вы должны добавить свойство к fordviewcontroller, которое представляет автомобиль. так что в этом случае у вас будет:

@interface fordviewcontroller : UIViewController

@property (copy) NSString *car;

@end

тогда в вашем контроллере табличного представления:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  NSInteger row = indexPath.row;
  NSString *car = [cars objectAtIndex:row];

  fordviewcontroller *detailViewController = [[fordviewcontroller alloc] initWithNibName:@"fordviewcontroller" bundle:nil];
  detailViewController.car = car;

  [self.navigationController pushViewController:detailViewController animated:YES];
}
...