Reputation: 737
I have in the Interface builder a view which contain a UITableView
and a custom UITableVIewCell
, I would like to add an image view to my view. How I can do this? I have added an image view, but the cell of my table view have a strange color.
Upvotes: 1
Views: 101
Reputation: 15147
Add UIImageView to your XIB file and set its IBOutlet.
Now add UITableView to your XIB file on UIImageView and also set its IBOutlet..
Make UITableView's backgroundColor to clearcolor...
Hope this will work...
Upvotes: 0