根据条件在运行时在UITABLEVIEW的每个单元格中添加一个Button

时间:2014-08-26 15:13:12

标签: objective-c uitableview

如何在运行时在每个表视图单元格中添加一个按钮,(例如)如果给定条件为真,则应显示红色按钮,如果为假,应显示绿色按钮?怎么实现呢?

1 个答案:

答案 0 :(得分:0)

您可以通过执行以下操作循环遍历表格视图的所有单元格:

for (NSInteger i = 0; i < [yourTableView numberOfSections]; ++i)
{
    for (NSInteger j = 0; j < [yourTableView numberOfRowsInSection:i]; ++j)
    {
        //Put your code here to check whatever, and add a UIButton to each cell.

        //The object below represents each cell of your tableView.
        //[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:j inSection:i]];
    }
}

希望有所帮助! :)