如何使用Three20向工具栏添加按钮?

发布于 2024-11-30 15:08:18 字数 728 浏览 4 评论 0原文

我正在尝试使用它向工具栏添加按钮:

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];

    [self.navigationController setToolbarHidden:NO animated:NO];
    self.navigationController.toolbar.translucent = YES;
    self.navigationController.toolbar.barStyle    = UIBarStyleBlack;

    UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(0.0, 0.0, 10.0, 10.0);

    UIBarButtonItem *infoButton = [[UIBarButtonItem alloc] initWithCustomView:button];

    NSMutableArray *a = [NSMutableArray arrayWithObject:infoButton];

    [self.navigationController setToolbarItems:a];
}

但是当我启动应用程序时,工具栏中没有按钮! :(

I'm trying to use this to add button to toolbar:

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];

    [self.navigationController setToolbarHidden:NO animated:NO];
    self.navigationController.toolbar.translucent = YES;
    self.navigationController.toolbar.barStyle    = UIBarStyleBlack;

    UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(0.0, 0.0, 10.0, 10.0);

    UIBarButtonItem *infoButton = [[UIBarButtonItem alloc] initWithCustomView:button];

    NSMutableArray *a = [NSMutableArray arrayWithObject:infoButton];

    [self.navigationController setToolbarItems:a];
}

But there is no button in toolbar when I started application! :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉殇 2024-12-07 15:08:18

不要设置导航控制器 toolBarItems 属性,而是尝试在当前显示的视图控制器中设置它,如下所示:

[self setToolbarItems:[NSArray arrayWithObjects:infoButton, nil]];

还将 infoButton 添加到 toolBarItems 将自动保留它。所以记得放置

[infoButton release];

viewWillAppear 方法的底部。

Instead of setting the navigation controllers toolBarItems property try setting it in the currently displayed view controller like so:

[self setToolbarItems:[NSArray arrayWithObjects:infoButton, nil]];

Also adding infoButton to the toolBarItems will automatically retain it. So remember to place

[infoButton release];

at the bottom of your viewWillAppear method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文