- (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];
}