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;