0

テーブルビューの上にイメージビューを追加しました。テーブルビューの背景として設定せずに、テーブルビューの背面に設定する必要があります。

sendSubviewToBack:bgViewも機能しません。誰か助けてくれませんか?

4

3 に答える 3

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];
于 2013-04-19T12:47:34.243 に答える