我可以在UIToolbar上创建一个不可见的UIBarButtonItem,插入XCode / Storyboard? 我找到了一个禁用它的属性:enabled = NO,但不会使其不可见
答案 0 :(得分:1)
NSMutableArray *items = [YourToolBar.items mutableCopy];
[items removeObject:BarButton];
YourToolBar.items = items;
[items release];