I have a tableview that has, and will always have, just one cell. I would like this cell to be located at the bottom of the view’s frame, but am unsure how to do this. Any help would be appreciated. The Table View has an .xib attached to it, and is grouped, with 1 section and one cell.
Share
Simply drag a table view into your xib’s regular view, and have its view controller implement the
<UITableViewDataSource>and<UITableViewDelegate>protocols. Then, you can drag the table view to any position you choose within your xib.