1

如何通过按钮上的代码添加到我拥有该属性的工具栏?

@property (strong, nonatomic) IBOutlet UIToolbar *toolB;
4

2 回答 2

11
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是您希望按钮调用的方法。

于 2012-05-24T14:37:00.093 回答
0

这可能会对您有所帮助,不要忘记释放按钮。

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 或点击此链接

对齐 UIToolBar 项

于 2012-05-24T14:41:27.817 回答