Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XCode / Storyboard で挿入された UIToolbar に非表示の UIBarButtonItem を作成できますか? それを無効にするプロパティを見つけました: 有効 = NO ですが、非表示にはされていません
NSMutableArray *items = [YourToolBar.items mutableCopy]; [items removeObject:BarButton]; YourToolBar.items = items; [items release];