如何将 UIToolbar 添加到我的 UITableViewController 中?

发布于 2024-11-25 00:53:12 字数 81 浏览 1 评论 0原文

我有一个 UITableViewController。我想在底部显示一个 UIToolbar,但我不确定如何做到这一点,因为 IB 不允许我添加它。

I have a UITableViewController. I'd like to display a UIToolbar at the bottom but am not sure how I can do this as IB does not let me add it.

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

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

发布评论

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

评论(1

不再让梦枯萎 2024-12-02 00:53:12

只需尝试一下:

在 .h 文件中:

UIToolbar* toolbar;

在 .m 文件中

UIBarButtonItem *actionButton  = [[UIBarButtonItem  alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(doAction)];
    toolbar           = [UIToolbar new];
    toolbar.barStyle  = UIBarStyleDefault;

    [toolbar sizeToFit];
    CGFloat toolbarHeight = [toolbar frame].size.height;
    CGRect mainViewBounds = appDel.window.bounds;
    [toolbar setFrame:CGRectMake(CGRectGetMinX(mainViewBounds),
                                 438,
                                 CGRectGetWidth(mainViewBounds),
                                 toolbarHeight)];       

    [[[UIApplication sharedApplication] keyWindow] addSubview:toolbar];

Just try with it:

In .h file:

UIToolbar* toolbar;

In .m file

UIBarButtonItem *actionButton  = [[UIBarButtonItem  alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(doAction)];
    toolbar           = [UIToolbar new];
    toolbar.barStyle  = UIBarStyleDefault;

    [toolbar sizeToFit];
    CGFloat toolbarHeight = [toolbar frame].size.height;
    CGRect mainViewBounds = appDel.window.bounds;
    [toolbar setFrame:CGRectMake(CGRectGetMinX(mainViewBounds),
                                 438,
                                 CGRectGetWidth(mainViewBounds),
                                 toolbarHeight)];       

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