Human Interface Guidelines — What It Is, iOS Design Principles

Author: IT Sectr Published: 2026-02-21 Reading time: 8 min

Human Interface Guidelines (HIG) — the official set of interface design rules from Apple for iOS, iPadOS, macOS, watchOS, and tvOS platforms. The document contains recommendations on navigation, typography, colors, animation, and user interaction. According to Apple Developer Documentation (2025), following HIG reduces user adaptation time to an application by 40% and increases the App Store rating. The guidelines cover all stages of design — from concept to final prototype.

Key Takeaways

  • Human Interface Guidelines — a set of Apple interface design rules for all ecosystem platforms.
  • Six fundamental principles of HIG: integrity, hierarchy, clarity, deference to the user, feedback, and metaphor.
  • Platform sections of HIG describe unique iOS elements (Tab Bar, Navigation Bar), macOS (Menu Bar, Panels), and watchOS (Complications, Digital Crown).
  • Built-in Apple components — Sheets, Popovers, Alerts — implement HIG out of the box, reducing development time.
  • Current version of HIG is published at developer.apple.com and is updated with new OS releases.

What are Human Interface Guidelines?

Human Interface Guidelines (HIG) is Apple's official documentation for designing user interfaces. The document contains descriptions of all standard system components, rules for their use, requirements for gestures, animation, typography, and color palette. Apple first published HIG for Macintosh in 1987, and since then the document has evolved alongside the platforms — from iOS 1 (2007) to the current versions iOS 18, iPadOS 18, macOS 15 Sequoia, watchOS 11, and tvOS 18. HIG covers three levels: design philosophy (principles), system components (UI elements), and technical recommendations (screen sizes, Safe Area, Dynamic Type). For a developer, HIG serves as the single source of truth when making design decisions: if a component is described in HIG, there is no need to reinvent it.

Structure of the Human Interface Guidelines document

The HIG document is divided into three major parts: "Foundations" (fundamental principles and patterns), "Platforms" (platform-specific sections for iOS, iPadOS, macOS, watchOS, tvOS, visionOS), and "Components" (a catalog of all system UI elements). Each component is described in a uniform template: purpose, anatomy, behavior, best practices, and examples. For example, the Navigation Bars section contains specifications for height (44pt in portrait, 32pt in landscape on iPhone), rules for button placement, and customization limitations. HIG also includes recommendations for Accessibility — VoiceOver, Dynamic Type, reduce motion — which are mandatory for App Store publication.

Why HIG is critical for an iOS developer

Following Human Interface Guidelines directly affects an application's success in the App Store. During moderation, Apple checks HIG compliance — non-standard gestures, overridden system components, or navigation hierarchy violations can result in rejection. According to the Apple Developer Program License Agreement (2025), applications that use system APIs improperly are rejected during review. At IT Sectr, we have followed HIG in all iOS projects since 2017 — this reduces review time and increases user ratings. Additionally, HIG-compliant applications achieve higher rankings in App Store search thanks to better user experience.

Core Principles of HIG Apple

Six fundamental principles of Human Interface Guidelines shape Apple's design philosophy. The first principle — Aesthetic Integrity: the appearance of the interface should match its function. The second — Consistency: identical elements behave the same way across all system applications. The third — Direct Manipulation: the user interacts with content directly (swipe, tap, pinch-to-zoom) rather than through abstract controls.

Clarity, hierarchy, and feedback

Clarity requires that text be readable, icons be understandable, and navigation be predictable. Dynamic Type and SF Symbols are Apple's tools for maintaining clarity across all devices. Deference means the interface should not compete with the content: blurred backgrounds, minimalist toolbars, and transparent elements (in the iOS 7+ style) implement this principle. Feedback ensures that every user action receives a visual or tactile response: button highlighting, haptic feedback, transition animation. Violating the feedback principle is one of the common causes of low App Store ratings, according to Appfigures data (2025).

Key Sections of Human Interface Guidelines

Human Interface Guidelines contains detailed specifications for each Apple system component. The Bars section describes Navigation Bar (standard height 44pt), Tab Bar (49pt), Toolbar (44pt), and Search Bar. The Views section includes Table View with basic and custom cell types, Collection View with compositional layout support, Scroll View, and Text View. The Controls section specifies Button, Slider, Switch (minimum target — 44×44pt), Segmented Control, Stepper, and Date Picker. For each control, hit-target dimensions (minimum touch area — 44×44pt per Apple guidelines), visual states (normal, highlighted, disabled, selected), and transition animations are specified.

Typography and color in HIG

Apple recommends using the system font San Francisco (SF Pro for iOS/macOS, SF Compact for watchOS) with Dynamic Type — automatic size adaptation to user settings. HIG defines 11 text styles: Large Title (34pt), Title 1 (28pt), Title 2 (22pt), Title 3 (20pt), Headline (17pt, semibold), Body (17pt), Callout (16pt), Subhead (15pt), Footnote (13pt), Caption 1 (12pt), Caption 2 (11pt). The HIG color palette includes system colors: labelColor, secondaryLabelColor, systemBackgroundColor, systemGroupedBackgroundColor — with support for light and dark themes. Using system colors guarantees correct display on all devices and under accessibility settings.

Platform-Specific Features in HIG

Each Apple platform has unique interface elements described in HIG. For iOS these include Tab Bar (bottom navigation), Navigation Bar (top bar with title and buttons), Sheets (modal panels), Activity View (system sharing), Live Activities, and Dynamic Island. For iPadOS, Split View, Slide Over, Popover Presentation, and Keyboard Shortcuts are added. For macOS — Menu Bar, Dock, Sheets, Panels, Sidebar, Toolbar with NSToolbarItem. For watchOS — Complications, Digital Crown, Scribble, Swipe Gestures, and Always-On Display. For tvOS — Focus Engine, Parallax Icons, Top Shelf.

Adapting design across platforms

HIG recommends not mechanically transferring elements between platforms: Tab Bar on iOS is not equivalent to Sidebar on macOS, although both solve navigation tasks. For multiplatform applications, Apple offers Mac Catalyst and SwiftUI, which automatically adapt the interface to the target platform while following HIG. When developing with SwiftUI at IT Sectr, we use platform-specific modifiers: .navigationViewStyle, .tabViewStyle, and .pickerStyle — they guarantee compliance with native guidelines. Additionally, HIG describes requirements for adapting to Dynamic Type, enlarged text, Reduce Motion, and increased contrast.

How to Apply HIG in Practice

Applying Human Interface Guidelines begins with studying the "App Architecture" section, which describes the structure of a typical iOS application: launch screen, onboarding, modal screens, navigation graph, and loading states. The first step is to choose a navigation style (hierarchical with Navigation Controller, flat with Tab Bar, modal with Sheets, or combined). The second step is to define the screen hierarchy and ensure each screen conforms to the HIG template. The third step is to select system components for each task: Table View for lists, Collection View for grids, Page Control for carousels.

Checking HIG compliance before publication

Apple provides Xcode Preview Assets and Accessibility Inspector for verifying HIG compliance. It is recommended to go through a checklist: all hit-targets > 44pt, text uses Dynamic Type, colors support dark theme, navigation follows HIG hierarchy, gestures do not conflict with system ones (e.g., swipe-back is not overridden). At IT Sectr, we conduct HIG reviews before every release — this eliminates rejections during App Store moderation. Additionally, App Store Review Guidelines (section 4.0 "Design") directly references HIG: applications that grossly violate the guidelines are rejected until non-compliance is resolved.

Frequently Asked Questions

How does HIG differ from Material Design?

Human Interface Guidelines (Apple) and Material Design (Google) differ in philosophy: HIG promotes content-driven skeuomorphism (the interface does not compete with content), while Material Design promotes "smart paper" with shadows and elevation layers. HIG uses the system font San Francisco, Material uses Roboto (and its variation Google Sans). Technically, HIG operates in pt (points), Material in dp (density-independent pixels); at 1× both match: 1pt = 1dp = 1/163 inch on the base screen.

Is HIG compliance mandatory for App Store publication?

Formally yes — section 4.0 of the App Store Review Guidelines requires HIG compliance. In practice, Apple rejects applications only for serious violations: overriding system gestures, broken navigation, non-clickable elements. Minor deviations (custom controls, non-standard typography) usually pass moderation, but may reduce user ratings, according to an Appfigures study (2025).

Where can I find the current version of Human Interface Guidelines?

The current version of HIG is published on the official website developer.apple.com/design/human-interface-guidelines. The document is updated alongside beta OS releases (WWDC, June) and final releases (September). A PDF archive is available for offline access on the Apple Developer Documentation portal. It is recommended to subscribe to updates of the What's New section in HIG.

Are HIG updated with new iOS versions?

Yes, Apple updates HIG annually alongside new OS releases at WWDC. For example, iOS 18 added sections on Dynamic Island, Live Activities, and Game Mode to HIG. watchOS 11 expanded the Vitals and Training Load sections. Each update is accompanied by a changelog section "What's New in HIG" on developer.apple.com.

Can Android components be used in an iOS application, violating HIG?

Technically yes — App Store moderation does not check every control individually. However, iOS users expect native behavior: Bottom Navigation instead of Tab Bar, Floating Action Button instead of Toolbar reduce interface familiarity. According to a Nielsen Norman Group UX study (2024), platform antipatterns increase task completion time by 22%.

Summary

  • Human Interface Guidelines — the official Apple design standard for all platforms: iOS, iPadOS, macOS, watchOS, tvOS, visionOS.
  • Six principles of HIG (Aesthetic Integrity, Consistency, Direct Manipulation, Clarity, Deference, Feedback) form a unified Apple interface philosophy.
  • The document is structured into three sections: Foundations (principles), Platforms (platform sections), Components (catalog of UI elements with anatomy and behavior).
  • Each HIG component is specified: dimensions, hit-target (44×44pt), states, animations, and accessibility requirements.
  • Platform sections describe unique elements: Tab Bar for iOS, Menu Bar for macOS, Digital Crown for watchOS, Focus Engine for tvOS.
  • HIG compliance is mandatory for App Store publication (section 4.0 of Review Guidelines) and improves user ratings.
  • Apply HIG through native SwiftUI components, Xcode Preview Assets, and HIG review before each release.

We will develop a mobile application turnkey

IT Sectr creates iOS and Android applications for startups and businesses since 2017. We will advise you and propose the best solution.

Discuss the project

Read also