如何在它的UITableViewCell文本的基础上显示UIButton?

时间:2014-07-30 22:35:45

标签: ios uitableview uibutton image-clipping

我无法弄清楚如何在自己所属的UITableViewCell中的文本上方放置一个带有自定义图像的UIButton。有没有办法重新排序可见故事板层次结构之外的项目?

在故事板中,我尝试过:

  1. 将按钮设置为不透明。
  2. 取消选中“剪辑子视图”以获取单元格视图。
  3. 我没有尝试过任何作品。下面是它现在如何出现的图片。

    Notice how the text is in front of the button?

2 个答案:

答案 0 :(得分:0)

如果我理解您的问题,您需要以下代码才能将您的子视图插入UILabel上方。

[self.view insertSubview:<#(UIView *)#> aboveSubview:<#(UIView *)#>];

希望有所帮助!

答案 1 :(得分:0)

我想出了我需要做的事情:

UIButton * button = (* obtain button *)
[button.superview bringSubviewToFront:button];