Sto rilevando la proiezione/nascondere la tastiera aggiungendo questo codice nel viewDidLoad:Rimuovere NSNotificationCenter osservatore
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardDidHide:)
name:UIKeyboardDidHideNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillShow:)
name:UIKeyboardWillShowNotification
object:nil];
Ad un certo punto però voglio rimuovere questi osservatori, senza chiamare
[[NSNotificationCenter defaultCenter] removeObserver:self];
perché questo rimuove tutti gli osservatori e ho altri osservatori che non voglio rimuovere. Come posso rimuovere solo quei due ??