首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

隐藏UIToolBar下的UIBarButtonItem

2012-09-16 
隐藏UIToolBar上的UIBarButtonItemIf youre trying to hide a UIBarButtonItem, youll actually have to

隐藏UIToolBar上的UIBarButtonItem

If you're trying to hide a UIBarButtonItem, you'll actually have to modify the contents of the parent bar. If it's a UIToolBar, you'll need to set the bar's items array to an array that doesn't include your item.

?

NSMutableArray ? ? *items = [[myToolbar.items mutableCopy] autorelease];?[items removeObject: myButton];?myToolbar.items = items;?

热点排行