[iPhone] Getting an UIImageView to display under a UITableView

2009-05-12 Thread Eric E. Dolecki
In my viewDidLoad, I am doing this (which shows only white beneath my UITableView) NSLog(@%@, imageView ); table.backgroundColor = [UIColor clearColor]; imageView.image = [UIImage imageNamed:@bg.png]; *2009-05-12 13:56:23.964 iTunesTable[16036:20b] UIImageView: 0xd17d20; frame = (0 0; 320

Re: [iPhone] Getting an UIImageView to display under a UITableView

2009-05-12 Thread Luke the Hiesterman
TableViews were never meant to be transparent. There are many different considerations in making this actually happen, and if you were ever able to pull it off it would likely be mostly a hack. If you think you want an image behind a table view, I'd suggest taking a step back to your UI

Re: [iPhone] Getting an UIImageView to display under a UITableView

2009-05-12 Thread Eric E. Dolecki
I have a grouped table view - so implementing something other than the old iMac striped look is a good thing in my opinion. Eric On Tue, May 12, 2009 at 2:15 PM, Luke the Hiesterman luket...@apple.comwrote: TableViews were never meant to be transparent. There are many different considerations

Re: [iPhone] Getting an UIImageView to display under a UITableView

2009-05-12 Thread Dave DeLong
Alternatively (and I've successfully used this approach), you could create a new UIColor withPatternImage (the image you want in the background), and then just set it to be the backgroundColor property of the UITableView. Dave ___ Cocoa-dev mailing