My UITableViewController class uses an .xib. I would like to make the TableView only take up half the size of the screen, so that I could add more to it. Is there anyway to do this, or do I need to create it all in code, and not use .xib.
My UITableViewController class uses an .xib. I would like to make the TableView only
Share
This thread covers a similar situation. In practice it would be easier to use a standard
UIViewControllerand implement theUITableViewDataSourceandDelegatemethods manually.