Apple Human Interface Guidelines for iPhone. Use when building, reviewing, or refactoring SwiftUI/UIKit interfaces for iOS. Triggers on tasks involving iPhone…
Comprehensive design rules derived from Apple's Human Interface Guidelines for iPhone app development.
Covers 10 critical areas: layout and safe areas, navigation, typography with Dynamic Type support, color and Dark Mode, accessibility, gestures, components, patterns, privacy, and system integration
Includes 100+ specific rules with code examples showing correct and incorrect implementations across SwiftUI and UIKit
Provides a quick-reference table for common UI components and an evaluation checklist for HIG compliance audits
Details 15 anti-patterns to avoid, from hamburger menus and blocking spinners to hardcoded fonts and stacked modals
iOS Design Guidelines for iPhone
Comprehensive rules derived from Apple's Human Interface Guidelines. Apply these when building, reviewing, or refactoring any iPhone app interface.
1. Layout & Safe Areas
Impact: CRITICAL
Rule 1.1: Minimum 44pt Touch Targets
All interactive elements must have a minimum tap target of 44x44 points. This includes buttons, links, toggles, and custom controls.
Correct:
Button("Save") { save() }
.frame(minWidth: 44, minHeight: 44)don't have the plugin yet? install it then click "run inline in claude" again.