The cell is also a very important part of the table, so let's take a look at it now.
1. View composition structure
icons, headings, and subheadings can be set selectively, extended views can be built-in or customized, and the built-in extension view is defined in the enumeration type Uitableviewcellaccessorytype
There are several types of constant enumerations for Uitableviewcellaccessorytype :
- Uitableviewcellaccessorynone. No extension icon
- Uitableviewcellaccessorydisclosureindicator. Expand indicator, touch the icon to switch to the next table view, icon
- Uitableviewcellaccessorydetaildisclosurebutton. Detail Display button, when you touch the cell, the table view displays more details about the current cell as a view, and the icon before iOS 7 is the icon after iOS 7.
- Itableviewcellaccessorycheckmark. A check mark indicates that the row is selected and the icon is
There are several types of Uitableviewcellstyle:
- Uitableviewcellstylesubtitle. A style with a subtitle
Chapter Two: IOS table Table View cell Simple Introduction