MCP HubMCP Hub
SKILL·E91801

ios-hig-design

wondelai
업데이트됨 15 days ago
19 조회
2,020
206
2,020
GitHub에서 보기
메타design

정보

이 스킬은 iOS 인터페이스를 Apple의 Human Interface Guidelines에 따라 디자인하는 지침을 제공하여 네이티브한 느낌과 외관을 보장합니다. SwiftUI, UIKit, 네비게이션 패턴, 접근성, 플랫폼 관례와 같은 iOS 전용 구성 요소를 논의할 때 활성화됩니다. 안전 영역, 다이내믹 아일랜드, SF Symbols, 다크 모드, 적응형 레이아웃과 같은 iOS 전용 기능을 구현할 때 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add wondelai/skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/wondelai/skills
Git 클론대체
git clone https://github.com/wondelai/skills.git ~/.claude/skills/ios-hig-design

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

iOS Human Interface Guidelines Design Skill

Framework for designing native iOS interfaces that feel intuitive, consistent, and aligned with Apple's design philosophy. Based on Apple's Human Interface Guidelines, the definitive resource for apps that integrate seamlessly with iPhone, iPad, and the Apple ecosystem.

Core Principle

Apple's iOS design philosophy rests on three pillars: clarity (every element legible and purposeful), deference (the interface never overshadows the content it presents), and depth (layering, transitions, and realistic motion convey hierarchy and spatial relationships).

The foundation: The best iOS apps internalize this philosophy rather than following HIG rules mechanically. Native components, system conventions, and platform consistency aren't constraints---they're the reason iOS users trust and enjoy apps that feel like they belong.

Scoring

Goal: 10/10. Score 1 point per satisfied row of the Quick Diagnostic (6 rows), plus up to 4 points for native idiom: +1 semantic colors/text styles throughout (no hardcoded values), +1 system controls over custom reimplementations, +1 standard gestures and meaningful haptics, +1 SF Symbols and correct app-icon shape. Bands: 9-10 = native, accessible, adapts to Dark Mode and Dynamic Type, zero foreign patterns; 5-6 = works but leaks Android idioms or hardcodes color/size; <=3 = fails safe areas, touch targets, or VoiceOver. Always state the score and the specific improvements needed to reach 10/10.

iOS Design Framework

1. Layout & Safe Areas

Core concept: iOS devices have specific screen dimensions, safe area insets, and hardware intrusions (notch, Dynamic Island, home indicator) that every layout must respect.

Key insights:

  • Design for the smallest screen first (375pt width, iPhone SE)
  • Safe areas protect content from the notch, Dynamic Island, and home indicator---never place interactive elements under them
  • Standard content margins: 16-20pt from screen edges; spacing increments: 8 / 16 / 24pt
  • Minimum touch target and list row height: 44pt

Product applications:

ContextLayout PatternExample
Status bar20pt classic, 44-54pt on Dynamic Island devicesTime, signal, battery area
Navigation bar44pt standard row + ~52pt large title (~96pt total)Back button, title, actions
Content areaFlexible, scrollable, respects safe areaMain app content
Tab bar49pt height, translucent with blur2-5 primary destinations
Home indicator34pt inset at bottomSystem gesture area

Copy patterns:

  • Use VStack { }, which respects safe areas by default
  • Use .ignoresSafeArea() only for backgrounds and decoration, never interactive content
  • Test on multiple sizes, including iPhone SE and Pro Max

See references/navigation.md when laying out chrome---exact nav bar and tab bar dimensions, large-title behavior, and split-view rules.

2. Typography & Dynamic Type

Core concept: iOS uses the San Francisco (SF Pro) typeface with semantic text styles that automatically scale for accessibility via Dynamic Type. Semantic styles give consistent platform hierarchy; Dynamic Type lets users read at their preferred size without breaking layouts.

Key insights:

  • Large Title: 34pt Bold; Title: 17pt Medium; Body: 17pt Regular; Caption: 12-13pt; secondary text: 15pt at 60% opacity
  • Minimum text size 11pt (captions/secondary only)
  • Line height at least 1.3x font size; optimal line length 35-50 characters on mobile
  • Always left-aligned, non-justified text

Product applications:

ContextTypography PatternExample
Screen titles.largeTitle or .title styleLarge title collapses on scroll
Body content.body style, 17ptList items, descriptions
Secondary info.subheadline or .footnoteTimestamps, metadata
Tab labels10pt SF textTab bar item labels
Buttons.body weight semiboldPrimary action text

Copy patterns:

  • Use .font(.title), .font(.body), .font(.caption) instead of hardcoded sizes; @ScaledMetric for custom spacing that scales
  • Prefer weight and color variation over extreme size differences for hierarchy
  • Test all layouts at the largest Dynamic Type size

See references/typography.md when matching a design to exact specs---per-style hex values and the Dark Mode text-color mapping.

3. Color & Dark Mode

Core concept: iOS provides semantic system colors that automatically adapt between light and dark appearances while preserving contrast and hierarchy.

Key insights:

  • Use Color(.label), Color(.secondaryLabel), Color(.systemBackground) instead of hardcoded colors
  • Color(.systemBlue) is the default tint; .systemRed for destructive actions; .systemGreen for success
  • Dark Mode inverts text colors and shifts backgrounds darker while keeping relative hierarchy; accent colors need lower brightness and higher saturation to pop
  • Maintain 4.5:1 contrast in both modes; preview both during development

Product applications:

ContextColor PatternExample
Primary textColor(.label)Adapts white/black per mode
Secondary textColor(.secondaryLabel)60% opacity in both modes
BackgroundsColor(.systemBackground) / .secondarySystemBackgroundLayered depth
Destructive actionsColor(.systemRed)Delete buttons, warnings
Interactive tintApp accent color or .systemBlueLinks, toggle states

Copy patterns:

  • Use .preferredColorScheme(.light) and .dark in previews to test both modes side by side
  • Define custom colors in the Asset Catalog with light/dark variants, not in code
  • Never assume a background is white or black; test with Increase Contrast enabled

See references/colors-depth.md when checking contrast---the full WCAG ratio table (normal text, large text, UI components) and the tertiary/grouped-background tokens.

4. Navigation Patterns

Core concept: iOS uses a layered navigation model: tab bars for primary destinations, navigation stacks for hierarchical drilling, and modals for focused tasks. Users rely on these patterns to know where they are and how to get back; reinventing them makes the app feel foreign.

Key insights:

  • Tab bar: 2-5 primary destinations, always visible, remembers state per tab
  • Navigation bar: back button (top-left), title (center or large), actions (top-right); large title collapses on scroll
  • Modals for focused tasks; dismiss via swipe-down or explicit close button
  • Never use hamburger menus---iOS users expect tab bars
  • Search bar can sit below the nav bar, hidden until pulled down

Product applications:

ContextNavigation PatternExample
App structureTab bar with 3-5 tabsHome, Search, Profile
Content hierarchyPush navigation (drill-down)List > Detail > Edit
Focused tasksModal presentationCompose, settings, filters
SearchPull-down search barSpotlight-style search
Split viewiPad sidebar + detailMail, Notes on iPad

Copy patterns:

  • Back button text should be the previous screen's title, not "Back"
  • Tab labels are single words ("Home", "Search"); modal titles describe the task ("New Message", "Edit Profile")
  • Use NavigationStack (not deprecated NavigationView) in SwiftUI

5. Controls & Inputs

Core concept: iOS provides a rich library of native controls (buttons, lists, toggles, pickers, menus, text fields) that users already understand and expect.

Why it works: Native controls ship with built-in accessibility, haptics, and learned interaction patterns; custom controls create friction and miss edge cases Apple already solved.

Key insights:

  • Page-level actions go in the nav bar (top) or action bar (bottom)
  • Primary buttons are filled with the theme color; secondary are outlined or text-only
  • Destructive actions use red and require confirmation when irreversible
  • Lists (table views) are the fundamental iOS content pattern
  • Match keyboard type to input (.emailAddress, .phonePad, .URL); use .textContentType for autofill

Product applications:

ContextControl PatternExample
FormsNative text fields with proper keyboard typesEmail field with @ keyboard
SettingsGrouped list with toggles, disclosureiOS Settings style
SelectionPicker, segmented control, or action sheetDate picker, sort options
Destructive actionsRed button + confirmation alert"Delete Account" flow
Context actionsLong press menu or swipe actionsEdit, share, delete on row

Copy patterns:

  • Pair .keyboardType(.emailAddress) with .textContentType(.emailAddress)
  • Prefer system confirmations: .alert() or .confirmationDialog(); use .swipeActions on list rows
  • Place primary action buttons at the bottom of the screen within thumb reach

Ethical boundary: Never disguise ads as native controls or make destructive actions easy to trigger accidentally.

See references/components.md when building a specific control---button styles, list/section variants, picker vs segmented-control choice, and confirmation-dialog wiring. See references/keyboard-input.md when building forms---keyboard-type table, input accessory views, and hardware-keyboard shortcuts.

6. Accessibility

Core concept: iOS has world-class accessibility features (VoiceOver, Dynamic Type, Switch Control, Voice Control), and every app must support them as a first-class concern. App Store review can reject apps that are unusable with assistive technologies.

Key insights:

  • Every interactive element needs an .accessibilityLabel; use .accessibilityValue for state and .accessibilityHint for effect
  • Group related elements with .accessibilityElement(children: .combine)
  • Support Dynamic Type at all sizes; test at the largest setting
  • Honor the 44 x 44pt touch target (section 1) and 4.5:1 contrast minimum (section 3) as accessibility requirements, not just visual defaults
  • Never convey meaning through color alone

Product applications:

ContextAccessibility PatternExample
Icons.accessibilityLabel("Favorite")Heart icon with label
Sliders.accessibilityValue("\(Int(volume * 100))%")Volume control
Buttons.accessibilityHint("Shares this item")Share button
Groups.accessibilityElement(children: .combine)Avatar + name row
ImagesDecorative: .accessibilityHidden(true)Background patterns

Copy patterns:

  • Write labels as nouns ("Favorite", "Settings"); write hints as actions ("Shares this item with others")
  • Test the complete app flow using only VoiceOver
  • Use Xcode's Accessibility Inspector to audit contrast and labels

See references/accessibility.md before sign-off---the full VoiceOver-implementation patterns and a pre-ship accessibility checklist to run the app against.

7. Icons & Images

Core concept: iOS uses SF Symbols as the standard icon system and requires app icons in specific sizes with the signature superellipse ("squircle") mask applied automatically. SF Symbols align optically with San Francisco text and scale with Dynamic Type, so they stay aligned and crisp at every weight and size.

Key insights:

  • Use SF Symbols (Image(systemName:)) for all standard icons---they scale with text
  • App icons: export 1024x1024px square; iOS applies the squircle mask (corner radius = side x 0.222 with 61% smoothing)
  • iOS 18+ supports light, dark, and tinted icon variants
  • Avoid text in app icons; keep designs simple with recognizable silhouettes

Product applications:

ContextIcon PatternExample
Tab barSF Symbols, filled variant for selectedhouse.fill, magnifyingglass
Navigation barSF Symbols at regular weightgear, plus, ellipsis
List accessoriesSF Symbols, secondary colorchevron.right, checkmark
App icon1024px square, simple bold designSingle recognizable glyph

Copy patterns:

  • Use Image(systemName: "heart.fill"); apply .symbolRenderingMode(.hierarchical) for multi-color depth
  • Size symbols relative to text with .imageScale(.large) or .font()
  • Browse symbols in the free SF Symbols app from Apple

Ethical boundary: Never use icons that suggest functionality that doesn't exist or contradict iOS conventions (trash = delete, not archive).

See references/app-icons.md when exporting the app icon---per-context size table, exact squircle math, and the iOS 18 light/dark/tinted variant requirements.

8. Gestures & Haptics

Core concept: iOS defines standard gestures (swipe back, pull to refresh, long press for context menu) and haptic feedback patterns that must be respected and never overridden. Gestures are muscle memory---repurposing swipe-back or pull-to-refresh disorients users; haptics give invisible confirmation that an action registered.

Key insights:

  • Never override: swipe-right-from-edge (back), swipe-down on modal (dismiss), pull-down on list (refresh)
  • Swipe-left on rows reveals actions; long press shows context menus; pinch zooms images and maps
  • Three haptic types: impact (physical actions), notification (outcomes), selection (UI changes)
  • Haptics should be subtle and meaningful---never constant or annoying

Product applications:

ContextGesture/Haptic PatternExample
NavigationSwipe right from left edgeSystem back gesture
ModalsSwipe down to dismissSheet dismissal
ListsPull to refresh, swipe for actionsRefresh content, delete row
Confirmation.success haptic on completionPayment confirmed
SelectionSelection haptic on toggle/pickPicker wheel scroll

Copy patterns:

  • UIImpactFeedbackGenerator(style: .medium) for physical interactions; UISelectionFeedbackGenerator() for UI state changes
  • UINotificationFeedbackGenerator() with .success, .warning, .error for outcomes
  • Call .prepare() before triggering haptics to minimize latency

See references/gestures.md when wiring gestures or animation---the full reserved-gesture table, haptic-generator recipes, and standard animation timing/curves.

Common Mistakes

MistakeWhy It FailsFix
Overriding standard gesturesBreaks muscle memory for swipe-back, pull-refreshUse system gestures as intended; custom gestures only for supplementary actions
Touch targets under 44ptMis-taps, frustration, accessibility failuresMake all interactive elements at least 44 x 44pt
Ignoring safe areasContent hidden behind notch, Dynamic Island, home indicatorRespect safe area insets; .ignoresSafeArea() only for backgrounds
Using Android patterns on iOSHamburger menus, top tabs, FABs feel foreignUse tab bars, bottom sheets, native iOS components
Skipping Dark ModeBroken layouts, unreadable text for Dark Mode usersUse semantic colors; test both appearances
Hardcoding font sizesBreaks Dynamic Type, excludes low-vision usersUse semantic text styles (.title, .body, .caption) throughout
Low contrast textFails WCAG AA; unreadable in sunlightMaintain 4.5:1 minimum; test with Increase Contrast
Not testing on real devicesSimulator misses performance, haptics, safe area edge casesTest on physical devices at smallest and largest sizes

Quick Diagnostic

Audit any iOS interface design:

QuestionIf NoAction
Does the layout respect safe areas on all device sizes?Content hidden behind hardwareAudit on iPhone SE and Pro Max; fix insets
Are all touch targets at least 44 x 44pt?Mis-taps and accessibility failuresIncrease tap areas; .frame(minWidth: 44, minHeight: 44)
Does the app work fully in Dark Mode?Broken/unreadable UI for Dark Mode usersReplace hardcoded colors with semantic system colors
Does text scale properly with Dynamic Type?Excludes low-vision usersUse semantic text styles; test at largest setting
Can a VoiceOver user complete every task?App inaccessible to blind usersAdd labels, values, hints to all interactive elements
Are navigation patterns native iOS?App feels foreignReplace hamburger menus with tab bars; standard push/modal navigation

Beyond Core UI

The eight framework sections above each link their deep-dive reference inline at the point of need. Three further references cover system surfaces that sit outside the on-screen UI:

  • See references/privacy-permissions.md when the app requests camera, location, contacts, or any protected resource---request timing, pre-permission priming screens, usage-string wording, and the denied-permission recovery path.
  • See references/widgets-extensions.md when building a Home Screen widget, App Clip, Live Activity, or share/action extension---supported sizes and per-surface design constraints.
  • See references/system-integration.md when wiring the app into the OS---Siri/Shortcuts intents, Handoff, drag-and-drop, universal links, and Spotlight indexing.

Further Reading

For the complete guidelines, platform-specific guidance, and latest updates:

About the Author

The Apple Human Interface Guidelines are written and maintained by Apple's Human Interface Design team, one of the most influential design organizations in technology. First published in 1984 alongside the original Macintosh, the HIG established principles---direct manipulation, consistency, user control---that defined graphical interface design and have evolved through iPhone, iPad, Apple Watch, and Vision Pro. It remains freely available at developer.apple.com as the essential reference for Apple platforms.

GitHub 저장소

wondelai/skills
경로: plugins/ux-design/skills/ios-hig-design
0
agent-skillsai-skillsbusinessclaude-codeclaude-code-marketplaceclaude-code-plugin
FAQ

자주 묻는 질문

ios-hig-design Skill이란 무엇인가요?

ios-hig-design은(는) wondelai이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 ios-hig-design 관련 작업을 수행할 수 있게 합니다.

ios-hig-design은(는) 어떻게 설치하나요?

이 페이지의 설치 명령을 사용하세요. ios-hig-design을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.

ios-hig-design은(는) 어떤 카테고리에 속하나요?

ios-hig-design은(는) 메타 카테고리에 속합니다.

ios-hig-design은(는) 무료로 사용할 수 있나요?

네. ios-hig-design은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.

연관 스킬

content-collections
메타

이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.

스킬 보기
polymarket
메타

이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.

스킬 보기
creating-opencode-plugins
메타

이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.

스킬 보기
sglang
메타

SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.

스킬 보기