我有标准的UIBarButtonItem
UIBarButtonItem *share = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(share:)];
如何将她添加到UIToolBar?我试过了
self.toolbarItems = [NSArray arrayWithObject:share];
但它不行.需要你的帮助.
你能比“不起作用”更具体吗?
如果您要将项目添加到已有项目的工具栏中,则需要修改项目数组:
NSMutableArray *newItems = [self.toolbarItems mutableCopy];
[newItems addObject:share];
self.toolbarItems = newItems;
原文链接:https://www.f2er.com/c/112497.html