以编程方式将按钮添加到表视图单元格

发布于 2024-12-09 16:46:24 字数 43 浏览 1 评论 0原文

我可以在表格视图中添加和删除单元格。如何为添加的每个单元格添加两个按钮?

I can add and delete cells to my table view. How to have two buttons for each cell that's added?

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

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

发布评论

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

评论(1

叫嚣ゝ 2024-12-16 16:46:24

将按钮添加为单元格的子视图。就是这样。我已经给出了样本:

//Create your cell then do the following    
UIButton *newBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[newBtn setFrame:CGRectMake(10,5,55,55)];
[newBtn addTarget:self action:@selector(yourSelector:) forControlEvents:UIControlEventTouchUpInside];

[cell addSubview:newBtn];

Add the button as subview for your cell. That's it. I have given the sample:

//Create your cell then do the following    
UIButton *newBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[newBtn setFrame:CGRectMake(10,5,55,55)];
[newBtn addTarget:self action:@selector(yourSelector:) forControlEvents:UIControlEventTouchUpInside];

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