How are toolbar items deactivated/activated?
I would like to make a few buttons visible but not selectable. How is this done if the toolbar items are set as follows.
NSArray *items = [NSArray arrayWithObjects: shareButton, space, copyButton, space, deleteButton, nil];
[self setToolbarItems:items animated:NO];
I want to activate/deactivate the share, copy and delete buttons when no items are selected.
How are these items accessed?
There are two ways that spring to mind: