tags:

views:

9

answers:

1

I can hold the value of touched cell but I cannot pass that value to another class or call from that class.

SearchTableViewController.m

**deneme= [[NSMutableArray alloc]init];
deneme=[tableData objectAtIndex:indexPath.row];

NSLog(@"my row = %@", deneme); //I can hold one of the selected or touched rows in table

HistoryTableViewController.m

**SearchTableViewController *obj = (SearchTableViewController *)[self.tabBarController.viewControllers objectAtIndex:11];
NSLog(@"my 2nd row= %@", [obj deneme]); //It doesn't retrieve here
A: 

I solved that problem estimately few weeks ago. I identified AppDelegate *appdelegate vs vs thing and I call it with writing appdelegate.anything from different ViewController classes.

It was just a piece of cake that I could not recognize for a while .. :(