Hi,
I am listening to the UIMenuControllerWillShowMenuNotification in my view controller.
For this purpose, I add the view controller as an observer for this notification
[[NSNotifcationCenter defaultCenter] addObserver:self selector:@selector(menuControllerWillShow

name:UIMenuControllerWillShowMenuNotification object:nil];
I've implemented the function
-(void) menuControllerWillShow

NSNotification*) notification
{
NSLog(@"Enter in menuControllerWillShow");
//do something
}
But when I am running on ipod touch 3.1.2 (simulator/device) it never enters to that function when I tap on a text view
Any suggestion?
Thanks for help