Para dar las gracias debes entrar o registrarte en el foro
Hola
Eh la verdad lo revise rapidamente me dices que quieres que pase de una tableta a otra.
Si quieres pasar por medio de un boton:
- (IBAction)Galeria:(id)sender{
GaleriaController *varGaleria = [[GaleriaController alloc] initWithNibName:@"GaleriaController" bundle:nil];
[[self navigationController] pushViewController:varGaleria animated:YES];
[varGaleria release];
}
Y me dices que de un uitable a otra:
debes agregar esto :
- (void)viewDidLoad {
[super viewDidLoad];
restaurant = [[NSMutableArray alloc] init];
[restaurant addObject:@"Ls"];
[restaurant addObject:@"Tr"];
self.navigationItem.title = @"Re ";
self.clearsSelectionOnViewWillAppear = NO;
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if ([indexPath row] == 0) {
LimaController *varLima = [[LimaController alloc] initWithNibName:@"LimaController" bundle:nil];
[[self navigationController] pushViewController:varLima animated:YES];
[varLima release];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
} else if ([indexPath row] == 1) {
TrujilloController *varTrujillo = [[TrujilloController alloc] initWithNibName:@"TrujilloController" bundle:nil];
[[self navigationController] pushViewController:varTrujillo animated:YES];
[varTrujillo release];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
} else if ([indexPath row] == 2) {
PiuraController *varPiura = [[PiuraController alloc] initWithNibName:@"PiuraController" bundle:nil];
[[self navigationController] pushViewController:varPiura animated:YES];
[varPiura release];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
}
Espero que sea de ayuda
Saludos
Gracias parcero ya habia solucionado este problemilla
cuando termine mi app la publicare qui para los que comience tena una quia para que puedan empezar a conocer esta programacion que no es nada sencilla