我在tableview上添加了一个imageview。我需要将它设置到tableview的后面,而不将其设置为tableview的背景。
sendSubviewToBack:bgView
也不起作用。有人可以帮忙吗?
答案 0 :(得分:1)
尝试这样,
if objects are in xib ,then take imageview infront of tableview in xib,
(或)
if you are adding in programatically then add imageview before adding the tableview
(或)
table.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@""]];
(或)
[table bringSubviewToFront:yourImageview];
答案 1 :(得分:0)
试试这个
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"table_bg_image.png"]];
答案 2 :(得分:0)
没有得到你想要的东西。 从XIB开始,只需将其添加到表View后面的xib中,并将tableView的背景颜色设置为clearcolor,这样您就可以看到tableview背后的图像。