I have a UIBarButtonItem that just doesn\'t want to get disabled. Short version: when I call
[myBarButtonItem setEnabled:NO];
Nothing happe
If your toolbar has an IBOutlet (and you've checked to make sure it's non-nil), try:
[ [ [ myToolBar items ] objectAtIndex: myBarButtonItemIndex ] setEnabled:(NO) ];