UIButtonTypeRoundedRect 作为附件视图

发布于 2024-09-03 07:11:02 字数 514 浏览 4 评论 0原文

我有一个表格视图,我想在每个单元格的右侧放置一个标签,因此在 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 中我有一些像这样的代码

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.titleLabel.text = @"title";
cell.accessoryView = button;

但是,该按钮根本不显示。有人知道为什么吗? 我确信声明是正确的,因为如果我用 替换按钮声明,

UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];

那么按钮就会出现,这让我认为圆角矩形也应该出现。

I have a table view and I want to put a label on the right of each cell, so in - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath I'm having some code like this

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.titleLabel.text = @"title";
cell.accessoryView = button;

However, the button is not displaying at all. Anyone know why?
I am sure that the declaration is correct, because if I replace the button declaration with

UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];

then the button appears, which make me think that the rounded rectangle should also appear.

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

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

发布评论

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

评论(1

甜妞爱困 2024-09-10 07:11:02

尝试检查按钮的 frame 是否等于 CGRectZero,如果是,请将其设置为适当的值。

Try checking if the button's frame is equal to CGRectZero and if so, set it to an appropriate value.

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