Given an iPad app, when entering text I sometimes need to move the view up/down when the virtual keyboard is shown/hidden. Do do the move I use
-(void)keyboardDidShow:(NSNotification *)notification
and
-(void)keyboardDidHide:(NSNotification *)notification
Some customers have external bluetooth keyboards where the virtual keyboard doesn't appear when selecting a textfield/textview. Are these two methods ignored in those instances ? (I can't test it, since I don't have such hardware and I want to avoid moving the view up/down in case that it shouldn't.)
ty