передача данных между табличным представлением firstviewcontroller и secondviewcontroller из tabBarController - PullRequest
0 голосов
/ 31 октября 2011

Я хочу передать выбранный текст строки из табличного представления первой вкладки в метку представления второй вкладки. Я пытаюсь это, но это не работает: S stringdir - это nsstring

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SecondViewController *detailViewController = [[SecondViewController alloc]initWithNibName:@"SecondView" bundle:nil];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
detailViewController.stringdir= [ws2.CustomerName objectAtIndex:[indexPath row]]; 
NSLog(@"şişşşt %@ ", detailViewController.stringdir);

[detailViewController release];
}

1 Ответ

0 голосов
/ 31 октября 2011

Переместите detailViewController.stringdir = ... перед тем, как переместить контроллер представления в стек контроллера навигации.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SecondViewController *detailViewController = [[SecondViewController alloc]initWithNibName:@"SecondView" bundle:nil];

detailViewController.stringdir= [ws2.CustomerName objectAtIndex:[indexPath row]]; 
NSLog(@"şişşşt %@ ", detailViewController.stringdir);

// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];

[detailViewController release];
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...