UIBarButtonItem 中的 UIButton 未显示

发布于 2024-09-30 11:44:39 字数 530 浏览 4 评论 0原文

我的视图中确实加载了以下内容在我的表视图控制器上:

UIButton *change_view = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[change_view setTitle:@"List" forState:UIControlStateNormal];
[change_view addTarget:self action:@selector(toggleView:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithCustomView: change_view];    
self.navigationItem.rightBarButtonItem = button;    

当我运行程序时,它不显示任何标题或圆角矩形按钮。但是,如果我将类型更改为 UIButtonTypeInfoLight,它将显示出来......那么问题是什么?

I have the following in my view did load on my table view controller:

UIButton *change_view = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[change_view setTitle:@"List" forState:UIControlStateNormal];
[change_view addTarget:self action:@selector(toggleView:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithCustomView: change_view];    
self.navigationItem.rightBarButtonItem = button;    

When I run the program, it doesn't show any title or the rounded rectangle button. However, if I change the type to UIButtonTypeInfoLight, it will show up... so what is the problem?

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

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

发布评论

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

评论(2

幽蝶幻影 2024-10-07 11:44:39

我更喜欢下面的方法来设置按钮的边界。

[button setTitle:@"Title" forState:UIControlStateNormal];
[button sizeToFit];

I'd prefer the way below to set the button's bounds.

[button setTitle:@"Title" forState:UIControlStateNormal];
[button sizeToFit];
2024-10-07 11:44:39

尝试为您的 change_view 设置适当的框架。

当您使用 UIButtonTypeInfoLight 类型按钮时,使用一些内置尺寸(可能取决于所使用的图标),并应用 UIButtonTypeRoundedRect 类型默认框架,该框架必须是 CGRectZero 直角。

Try to set an appropriate frame to your change_view.

When you use UIButtonTypeInfoLight type button uses some built-in size (likely depended on icon used for it), with UIButtonTypeRoundedRect type default frame is applied which must be CGRectZero rect.

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