以编程方式向表格视图单元格添加按钮[关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以编程方式向表格视图单元格添加按钮[关闭]相关的知识,希望对你有一定的参考价值。
我可以在表视图中添加和删除单元格。如何为每个添加的单元格设置两个按钮?
答案
将按钮添加为单元格的子视图。而已。我给了样品:
//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];
以上是关于以编程方式向表格视图单元格添加按钮[关闭]的主要内容,如果未能解决你的问题,请参考以下文章
如何将按钮样式的单元格添加到 iPhone 应用程序的表格视图中?