(iOS) I have a UITableView as a root view (screen 1). when a cell is selected, it pushes a new UIView (screen 2) which contains two buttons. When one of those buttons is pressed, a new UIView is pushed (screen 3). I would like to pass some key-value pairs from screen 1 to both screen 2 and screen 3. Using the following code I can pass values to screen 2 with no problem, but screen 3 returns zero as the value, regardless of which cell is picked. Any help on why this is happening would be great. (The alternative is to use switch-cases in screen 2 to pass values to screen 3)
Screen 1:
NSIndexPath *indexPath = [self.tableView indexPathForCell:sender];
NSDictionary *sentItems = [NSDictionary dictionaryWithObjectsAndKeys:indexPath, @"indexPath", nil];
[destination setValue:sentItems forKey:@"sentItems"];