Users Pricing

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 2142 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!


I am a content writter !


1 Answers

Tarun Kumar 24 Nov 2015 Accepted Answer