可以在工具栏中以编程方式添加 UIButton ,当我点击按钮时,它会显示一个uiActionSheet,让我从相机拍照或者来自Photos Galery,当我选择一张图片时,它会返回到视图,工具栏中UIButton的背景会发生变化。
答案 0 :(得分:0)
从UIBarButton
创建UIButton
:
NSMutableArray *mutableItem = [[NSMutableArray alloc]initWithArray:toolbar.items];
UIBarButton *bookmark = [[UIBarButtonItem alloc] initWithCustomView:_m_bmBtn];
[mutableItem addObject:bookmark];
self.m_toolbarTop.items= mutableItem;
隐藏/显示另一个按钮:
button.hidden = YES/ NO
。
删除mutableItem
中的项目并设置:self.m_toolbarTop.items= mutableItem;