ios-design-guidelines

Installation
Summary

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
SKILL.md

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)

Incorrect:

Related skills

More from ehmo/platform-design-skills

Installs
919
GitHub Stars
362
First Seen
Feb 1, 2026