I have a new controller defined as follows:
@interface view1: UITableViewController
I’ve created (in viewDidLoad) an image view (logo image) and added this image view as subview for view1, but the problem is that table view cells still appear behind this image view, how can completely separate the image view from the table view ?
thanks in advance.
To have a logo type view you either need to set a custom headerview for the tableview via
and
the other method would be overriding
-loadViewand creating your own view that has two subviews, your imageview and a tableview.In the first method, once your scroll some the logo will eventually disappear. The second method makes the logo static.