I can not figure out how to create a table with several columns of a certain length and rows for an iPad in the xib interface. Somewhere they write that there should be a colums setting but there is none. Someone writes that you need to add a table view, aopt a cell view into it, but it is not inserted into a table view.

Tell me by actions, in the interface, how to create a table with certain rows and columns.

    1 answer 1

    The UITableView class has only one column. You are not confused with OS X? You need to either make your own class for the cells (so that the cell is a table row) or use a UICollectionView.

    http://www.appcoda.com/ios-programming-uicollectionview-tutorial/