I have a refresh item in my menu, bound to first responder's reload:
method. I have two view controllers. Both DO implement the exact same method with the same signature:
-(void)reload:(id)sth{
...
}
The menu item is bound the following way:
In one view controller, it works perfectly. In the other one, it's grayed out. Other menu items, custom or default, work fine. It's just one method in one view controller:
Why can it be grayed out?