Taking notes from iOS Design Guidelines
I should’ve written my thought about this website, but ended up making some notes, which can be regarded as a cheat sheet.🤓
Table View
.Plain
.Grouped
.Default
.With Subtitle
.With Value
.Large Cells
Modals, Popovers and Alerts
.Activity View
.Actions
*When there is enough space available (e.g., on iPad screens), action sheets visually transform into popovers. A button to close the view is not required anymore because tapping a target anywhere outside the popover will close it automatically.
.Alerts
*Also, you can add a message text, if needed, as well as up to two text input fields, one of which can be a masked input field, which is appropriate for sensitive information like passwords or PINs.
.Edit Menu
.Popover
*A popover is a powerful temporary view that can contain various objects such as its own navigation bar, table views, maps or web views.
Modals
There are three different modal styles available:
- Full screen: covers the entire screen.
- Page sheet: In portrait mode, the modal covers the underlaying content only partially. In landscape mode, the page sheet modal acts just like a full screen modal.
- Form sheet: In portrait mode, the modal appears in the center of the screen. The position of the modal adjusts automatically when a keyboard needs to be displayed. In landscape mode, the page sheet modal acts just like a full screen modal.