forum

Home / DeveloperSection / Forums / Problem in moving value from second view to first view controller in iPhone

Problem in moving value from second view to first view controller in iPhone

Anonymous User 1753 23-Nov-2015

I have created an application in iPhone, I have two view controllers, to move second view controller I am using segue and set its identifier to 'MainViewController'.

In the second view I am using Table View Controller, I want to move first view controller at the time whenever I click on table view cell with cell value. because I am using this cell value in the label of second view controller, but I am unable to display that value in the first view controller.

This is the code of table view : didSelectedRowAtIndexPath:

-(void) tableView:(UITableView *)tableView didSelectedRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *key = [[animals allKeys] objectAtIndex:indexPath.section];
[self.delegate cellIsClicked:[[animals objectForKey:key] objectAtIndex:indexPath.row]];

UIViewController *controller = [self.navigationController.storyboard

instantiateViewControllerWithIdentifier:@"MainViewController"];
[self.navigationController pushViewController:controller animated:YES];
}

Please help me to solve this problem or tell me what is the problem in my code?
Thanks in advance!


Updated on 24-Nov-2015
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By