[Solved] iPhone-Table View


You can size any table view to be whatever size you want. Just drag a table view controller into your view controller’s content view and hook up the outlets, delegate, and data source. We have an app in the app store where the iPad version uses a table view that lives in the left lower 1/2 of the screen, with other UI elements above and to the right.

Getting a functioning table view that’s narrower than the screen width in portrait mode on the iPhone might be a challenge though, since the screen is pretty narrow to begin with. I’m not sure there’s enough room to fit all the standard table view features (thumbnail icon, label, secondary label, disclosure triangle, drag area, delete button, etc, etc.

solved iPhone-Table View