How do I remove a button from a view controller's toolbar on the iPhone?
- by Tony
I have code that works great for adding a button to the toolbar:
NSArray* toolbarItems = [NSArray arrayWithObjects:flexibleSpace,shuffleBarItem,flexibleSpace,nil];
self.toolbarItems = toolbarItems;
However, I also want to be able to remove toolbar items. When I use the below method, my application crashes:
NSArray* toolbarItems = [NSArray arrayWithObjects:flexibleSpace,nil];
self.toolbarItems = toolbarItems;
Does anyone know how I can dynamically alter the toolbar on the iPhone?
Thanks!