Search code examples
tableviewcell

XCode iOS 1 TableView for iPhone and iPad?


I have a UITableView with a custom cell and they are both for the iPad(size) What is the best way to go? Should I create a new UITableView nib and a new Cell nib and call them or just resize them when needed? Please also give me instructions how to either of these solutions :)


Solution

  • table views aren't generally used on their own on ipads due to them having a lot more space, generally the design pattern is to have a small table view along the left and a content area on the right. I believe there is a uisplitviewcontroller to handle this.