How would I create an "About" page like this for my app? How do I have a
UITableView (grouped) under a UIView?
Take this about page for Things:
I'm having trouble creating something similar. I just want a UITableView
under a UIView with a UIImageView and a UILabel in it.
If I use a UIViewController and so I can position the UITableView
downward, I get this error: "Static table views are only valid when
embedded in UITableViewController instances."
If I use a UITableViewController with a grouped style and use contentInset
on self.tableView to move it down ([self.tableView
setContentInset:UIEdgeInsetsMake(150,0,0,0)];) I can't figure out how to
place a view above it. If I try to attach anything to self.view it crashes
(obviously). Same happens if I attach anything to self.tableView.
I then tried making the UIView the header of my UITableView section (I
only need one section) but I can't get it to move up enough. It just sits
inside the UITableView almost.
How do I have a UITableView (grouped style) exist with a UIView above it?
No comments:
Post a Comment