Apple HIG: Selection and Input Controls
Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered.
Key Principles
Clear current state. Users must always see what is selected. Toggles show on/off, segmented controls highlight the active segment, pickers display the current selection.
Prefer standard system controls. Built-in controls provide consistency and accessibility. Custom controls introduce a learning curve and may break assistive features.
Toggles for binary states. On or off. In Settings-style screens, changes take effect immediately. In modal forms, changes commit on confirmation.
Segmented controls for mutually exclusive options. 2-5 items, roughly equal importance, short labels.
Sliders for continuous values. When precise numeric input is not critical. Provide min/max labels or icons for range endpoints.
Pickers for long option lists. Too many options for a segmented control. Works well for dates, times, structured data.
Steppers for small, precise adjustments. Increment/decrement in fixed steps. Display current value next to the stepper with reasonable min/max bounds.
Text fields for short, single-line input. Text views for multi-line. Configure keyboard type to match expected input (email, URL, number).
Combo boxes: text input + selection list. macOS. Type a value or choose from a predefined list when custom values are valid.
Token fields: discrete values as visual tokens. macOS. For email recipients, tags, or collections of discrete items.
Gauges and rating indicators display values. Gauges show a value within a range. Rating indicators show ratings (often stars). Display-only; use interactive variants for input.
Reference Index
| Reference |
Topic |
Key content |
| controls.md |
General controls |
States, affordance, system controls |
| toggles.md |
Toggles |
On/off, immediate effect |
| segmented-controls.md |
Segmented controls |
2-5 options, equal weight |
| sliders.md |
Sliders |
Continuous range, min/max labels |
| steppers.md |
Steppers |
Fixed steps, bounded values |
| pickers.md |
Pickers |
Dates, times, long option sets |
| combo-boxes.md |
Combo boxes |
macOS, type or select, custom values |
| text-fields.md |
Text fields |
Short input, keyboard types, validation |
| text-views.md |
Text views |
Multi-line, comments, descriptions |
| labels.md |
Labels |
Placement, VoiceOver support |
| token-fields.md |
Token fields |
macOS, chips, tags, recipients |
| virtual-keyboards.md |
Virtual keyboards |
Email, URL, number keyboard types |
| rating-indicators.md |
Rating indicators |
Star ratings, display-only |
| gauges.md |
Gauges |
Level indicators, range display |
Output Format
- Control recommendation with rationale and why alternatives are less suitable.
- State management -- how the control communicates current state and whether changes apply immediately or on confirmation.
- Validation approach -- when to show errors and how to communicate rules.
- Accessibility -- labels, traits, hints for VoiceOver.
Questions to Ask
- What type of data? (Boolean, choice from fixed set, numeric, free-form text?)
- How many options?
- Which platforms? (Combo boxes and token fields are macOS-only)
- Settings screen or inline form?
Related Skills
- hig-components-menus -- Buttons and pop-up buttons complementing selection controls
- hig-components-dialogs -- Sheets and popovers containing forms
- hig-components-search -- Search fields sharing text input patterns
- hig-inputs -- Keyboard, pointer, gesture interactions with controls
- hig-foundations -- Typography, color, layout for control styling
Built by Raintree Technology · More developer tools
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
Source: sickn33/agentic-awesome-skills → skills/hig-components-controls/SKILL.md
Also appears in: sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/hig-components-controls/SKILL.md, sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/hig-components-controls/SKILL.md
1---2name: hig-components-controls3description: Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered.4---567# Apple HIG: Selection and Input Controls89Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.1011## Key Principles12131. **Clear current state.** Users must always see what is selected. Toggles show on/off, segmented controls highlight the active segment, pickers display the current selection.14152. **Prefer standard system controls.** Built-in controls provide consistency and accessibility. Custom controls introduce a learning curve and may break assistive features.16173. **Toggles for binary states.** On or off. In Settings-style screens, changes take effect immediately. In modal forms, changes commit on confirmation.18194. **Segmented controls for mutually exclusive options.** 2-5 items, roughly equal importance, short labels.20215. **Sliders for continuous values.** When precise numeric input is not critical. Provide min/max labels or icons for range endpoints.22236. **Pickers for long option lists.** Too many options for a segmented control. Works well for dates, times, structured data.24257. **Steppers for small, precise adjustments.** Increment/decrement in fixed steps. Display current value next to the stepper with reasonable min/max bounds.26278. **Text fields for short, single-line input.** Text views for multi-line. Configure keyboard type to match expected input (email, URL, number).28299. **Combo boxes: text input + selection list.** macOS. Type a value or choose from a predefined list when custom values are valid.303110. **Token fields: discrete values as visual tokens.** macOS. For email recipients, tags, or collections of discrete items.323311. **Gauges and rating indicators display values.** Gauges show a value within a range. Rating indicators show ratings (often stars). Display-only; use interactive variants for input.3435## Reference Index3637| Reference | Topic | Key content |38|---|---|---|39| [controls.md](references/controls.md) | General controls | States, affordance, system controls |40| [toggles.md](references/toggles.md) | Toggles | On/off, immediate effect |41| [segmented-controls.md](references/segmented-controls.md) | Segmented controls | 2-5 options, equal weight |42| [sliders.md](references/sliders.md) | Sliders | Continuous range, min/max labels |43| [steppers.md](references/steppers.md) | Steppers | Fixed steps, bounded values |44| [pickers.md](references/pickers.md) | Pickers | Dates, times, long option sets |45| [combo-boxes.md](references/combo-boxes.md) | Combo boxes | macOS, type or select, custom values |46| [text-fields.md](references/text-fields.md) | Text fields | Short input, keyboard types, validation |47| [text-views.md](references/text-views.md) | Text views | Multi-line, comments, descriptions |48| [labels.md](references/labels.md) | Labels | Placement, VoiceOver support |49| [token-fields.md](references/token-fields.md) | Token fields | macOS, chips, tags, recipients |50| [virtual-keyboards.md](references/virtual-keyboards.md) | Virtual keyboards | Email, URL, number keyboard types |51| [rating-indicators.md](references/rating-indicators.md) | Rating indicators | Star ratings, display-only |52| [gauges.md](references/gauges.md) | Gauges | Level indicators, range display |5354## Output Format55561. **Control recommendation with rationale** and why alternatives are less suitable.572. **State management** -- how the control communicates current state and whether changes apply immediately or on confirmation.583. **Validation approach** -- when to show errors and how to communicate rules.594. **Accessibility** -- labels, traits, hints for VoiceOver.6061## Questions to Ask62631. What type of data? (Boolean, choice from fixed set, numeric, free-form text?)642. How many options?653. Which platforms? (Combo boxes and token fields are macOS-only)664. Settings screen or inline form?6768## Related Skills6970- **hig-components-menus** -- Buttons and pop-up buttons complementing selection controls71- **hig-components-dialogs** -- Sheets and popovers containing forms72- **hig-components-search** -- Search fields sharing text input patterns73- **hig-inputs** -- Keyboard, pointer, gesture interactions with controls74- **hig-foundations** -- Typography, color, layout for control styling7576---7778*Built by [Raintree Technology](https://raintree.technology) · [More developer tools](https://raintree.technology)*7980## When to Use81This skill is applicable to execute the workflow or actions described in the overview.8283## Limitations84- Use this skill only when the task clearly matches the scope described above.85- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.86- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.8788---8990**Source:** [`sickn33/agentic-awesome-skills`](https://github.com/sickn33/agentic-awesome-skills) → `skills/hig-components-controls/SKILL.md`9192**Also appears in:** `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/hig-components-controls/SKILL.md`, `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/hig-components-controls/SKILL.md`