Comment utiliser NSNotification

Dans mon application il y a deux viewControllers comme FirstViewController et DetailViewController.
Lorsque tapez sur une cellule de tableau, c'accédez à DetailViewController. Dans DetailViewController, je veux modifier et de recharger la FirstViewController's la vue de la table

Comment puis-je utiliser NSNotification pour ce problème?

Voici la méthode que je veux mettre en œuvre NSNotification trucs

-(IBAction) save{
strSelectedText=theTextField.text;

[NSNotificationCenter defaultCenter];
NSNotification* notification = [NSNotification notificationWithName:@"MyNotification" object:self];
[[NSNotificationCenter defaultCenter] postNotification:notification];  

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector (objFirstViewController) name:@"MyNotification" object:nil];



[self.navigationController popViewControllerAnimated:YES];
}
InformationsquelleAutor smartsanja | 2011-08-23