Customize Table View Cells for UITableView
Customize Table View Cell Does the app look better? We’re going to make it even better by customizing the table cell. So far we utilize the default style of table view cell. The location and size of the thumbnail are fixed. What if you want to make the thumbnail bigger and show the preparation time for each recipe just like the below screen? Custom Table View Cell with Different Style Designing the Cell In this case, you have to create and design your own table cell. Go back to Xcode. In Project Navigator, right click “SimpleTable” folder and select “New File…”. As we’re going to design our own table cell, we have to create a new Interface Builder file for the cell. For this case, we just need to start with an “Empty” user interface. Click “Next” to continue. Select an Empty Interface Builder Document When prompt to choose the device family, select “iPhone” and click “Next” to continue. Save the file as “SimpleTableCell”. Once the file is created, you should fi...