- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog((@"This is didSelectRowAtIndexPAth"));
DetailViewController *detailViewController = [[DetailViewController alloc] init];
detailViewController.myDictionary = [self.placeArray objectAtIndex:[indexPath row]]
// この MyDictionary NSdictionary は、ここに取り込まれた他の viewController で宣言されます..
NSLog(@"My Dictionary: This is a MasterView one %@",detailViewController.myDictionary);
UIStoryboard *mystoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
detailViewController = [mystoryboard instantiateViewControllerWithIdentifier:@"DetailViewController"];
//The below NSlog is showing the content , its not null still in next viewcontroller same variable showing null content
NSLog(@"My Dictionary: This is a MasterView two %@",detailViewController.myDictionary);
[self performSegueWithIdentifier:@"showDetail" sender:self];
}