如何通过按钮上的代码添加到我拥有该属性的工具栏?
@property (strong, nonatomic) IBOutlet UIToolbar *toolB;
如何通过按钮上的代码添加到我拥有该属性的工具栏?
@property (strong, nonatomic) IBOutlet UIToolbar *toolB;
UIBarButtonItem *buttonOne = [[UIBarButtonItem alloc] initWithTitle:@"Button One" style:UIBarButtonItemStyleBordered target:self action:@selector(action)];
UIBarButtonItem *buttonTwo = [[UIBarButtonItem alloc] initWithTitle:@"Button Two" style:UIBarButtonItemStyleBordered target:self action:@selector(action)];
NSArray *buttons = [NSArray arrayWithObjects: buttonOne, buttonTwo, nil];
[toolBar setItems: buttons animated:NO];
如果我正确理解你的要求,就会成功。action
是您希望按钮调用的方法。
这可能会对您有所帮助,不要忘记释放按钮。
UIToolbar *actionToolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 416, 320, 44)];
UIBarButtonItem *actionButton =
[[[UIBarButtonItem alloc]
initWithTitle:@"No Action"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(noAction:)]
autorelease];
[actionToolbar setItems:[NSArray arrayWithObject:actionButton]];
UIToolbar 没有侧边按钮,您可以使用 UINavigationBar 或点击此链接