I assume with "under" you mean below, vertically.
So your tableview's frame doesn't fit the whole screen.
Are you using a UITableViewController as your superclass?
The UITableViewController set's it's view to the table view and because of that, your imageview doesn't show up.
You'll have to use a UIViewController subclass.
edit:
I'd rather set the UIImageView to the tableFooterView of your table. Otherwise it won't scroll... design question.
Last edited by Forsworn; 04-26-2009 at 10:28 AM.
|