如何在ios中使用模式Image在可扩展tableViewCell中设置UIButton

时间:2016-06-16 06:10:54

标签: ios objective-c uitableview uibutton

在我的表格视图中,我想在我的表格视图的每一行的可扩展单元格中将模式图像设置为自定义按钮。

我可以使用哪种方法?

请帮帮我。

2 个答案:

答案 0 :(得分:0)

通常在适当的时候你应该致电:

[myButton setImage:image forState:state]

适当的时间可能在tableView:cellForRowAtIndexPath:tableView:willDisplayCell:

答案 1 :(得分:0)

试试这个:

[yourbutton setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"Your Image name"]]];