Blog ยท iOS Development
๐Ÿ“ฑ iOS Development

Apple Human Interface Guidelines 2026: What Actually Matters

๐Ÿ“Š View 1-page infographic (share-ready PDF)

Apple's Human Interface Guidelines (HIG) are the design contract for every iOS app on the App Store. Apple won't quote chapter and verse during reviews, but reviewers will reject apps that violate the spirit of HIG, and users will quietly delete apps that feel "off." This post is the practical 2026 guide: what actually matters, what triggers rejections, and the polish patterns that separate premium-feeling iOS apps from amateur ones.

What HIG actually is

HIG is Apple's documented design philosophy for every Apple platform: iOS, iPadOS, macOS, tvOS, watchOS, visionOS. It covers everything from how to use color and typography to navigation patterns, controls, motion, accessibility, and platform-specific idioms.

You read it here: developer.apple.com/design/human-interface-guidelines. It's regularly updated as platforms evolve.

Why HIG matters (App Store reviewers + real users)

Six core HIG principles

  1. Hierarchy. Visual weight should match importance. The most important action is the most prominent.
  2. Harmony. Visual style is consistent throughout the app. No fonts changing between screens, no random color shifts.
  3. Consistency. Patterns the user learns in one part of the app work the same in every part.
  4. Feedback. Every user action gets clear feedback โ€” visual, haptic, or auditory.
  5. Depth. Layered surfaces (sheets, popovers, modals) convey relationships between screens.
  6. Direct manipulation. Users should feel like they're touching their data, not telling the app what to do.

Layout: safe areas, dynamic type, density

Use NavigationStack over NavigationView in modern SwiftUI — it's the supported pattern.

Typography

Color & dark mode

SF Symbols

SF Symbols is Apple's icon library โ€” 6,000+ symbols designed to pair with San Francisco, supporting weight, scale, color, and multi-color variants. Use them everywhere you need an icon.

Why: free, optimized, accessible (built-in VoiceOver names), scale perfectly with Dynamic Type, dark-mode aware, consistent with the OS chrome users see daily.

Tool: download SF Symbols.app from Apple. Browse, copy, paste names into your code.

Materials & depth

Apple's "materials" are translucent surfaces that blur and tint content behind them:

Motion & animation

Accessibility

Accessibility is HIG-mandatory. Skip it and you're closing your app to ~15% of potential users plus violating Apple's stated guidance.

Common rejection triggers tied to HIG

Polish patterns that lift apps from "functional" to "premium"

This is what made you ask about it. Your RDR2 and GTA V apps function well; you want them to feel premium. These are the patterns:

  1. Empty states with personality. Empty list views with thoughtful illustrations + suggested next actions.
  2. Loading states that aren't spinners. Skeleton screens, progressive content reveal, branded loaders.
  3. Pull-to-refresh on every refreshable list.
  4. Swipe actions on rows (delete, archive, favorite).
  5. Long-press menus with thoughtful options (.contextMenu).
  6. Subtle animations on state transitions — don't pop in, fade or slide.
  7. Haptics on key moments (success, error, important taps).
  8. Icon + label clarity in tab bars (Apple shows both by default for a reason).
  9. Smart defaults — if 90% of users want a setting on, default it on.
  10. Onboarding that ends in success — the user does something real and gets value before account creation.
  11. Confirmation only for destructive actions — not for every interaction.
  12. Native share sheets for sharing rather than custom UI.
  13. App icon that looks great at every size โ€” test on Home Screen, Settings, Spotlight.
  14. Settings screen that feels like the Settings app — same grouped table style.
  15. App-icon variants for paid users / Pro tier as a fun unlock.

Pre-submission HIG checklist

  1. Every screen tested in both light and dark mode.
  2. Dynamic Type tested at smallest (xSmall) and largest (xxxLarge + accessibility).
  3. VoiceOver works through every flow.
  4. All touch targets โ‰ฅ 44 ร— 44 pt.
  5. System back-swipe works in every navigation hierarchy.
  6. No "press here to learn more" arrows pointing at the OS chrome.
  7. App icon looks right on Home Screen + Settings.
  8. Empty states + loading states + error states all designed (not just default spinners).
  9. Permission requests appear in context, not at launch.
  10. App passes the "iPhone SE test" — works on the smallest current iPhone.
  11. App passes the "Pro Max test" — uses the larger screen meaningfully.
  12. If iPad-supported: adaptive layout, sidebar where appropriate, keyboard shortcuts.

See also: Claude at Maximum Efficiency (the design-overhaul workflow), iOS App Economics, Shipping RDR2.

Sources & References
  1. Apple โ€” Human Interface Guidelines
  2. Apple โ€” SF Symbols
  3. Apple โ€” Accessibility