I have an iPad app with a SplitView. On the left (in the RootView) there's a UITableView. How to insert a background image in that UITableView?
+1
A:
It really depends how you want this background to behaive.
- If you want background to stay without movement - put UIImageView "under" your tableview and set backgroundColor for your view with alpha 0.0
- If you want your background to move with your table use
setBackgroundColor:
andcolorWithPatternImage:
, but it will be titled with size of cells - If you want your background to move with table and background will be bigger then 1 cell - follow link recommended by KennyTM
OgreSwamp
2010-07-20 20:26:47
Thank you! It really helped!
Knodel
2010-07-21 11:24:26