
An app can pass every technical test and still feel wrong the moment someone opens it. Wrong spacing, non-standard navigation, gestures that behave unexpectedly — users can't always name what's off, but they feel it instantly. That friction kills trust faster than a bug report ever will.
The Apple Human Interface Guidelines exist precisely to prevent that disconnect. Following the Apple Human Interface Guidelines means your app behaves the way iPhone and iPad users already expect, without forcing them to relearn anything. iOS design guidelines take that further, giving you platform-specific rules for navigation, typography, gestures, and interaction patterns that define what "native" actually feels like.
This post covers what's inside the HIG and how to navigate it, how Apple HIG compliance connects directly to App Store approval, how accessibility fits into the picture, and where to find the official Apple UI kits and design resources that make implementation faster. No fluff — just what you need to ship something Apple users will trust from the first tap.
The Apple Human Interface Guidelines are Apple's official design documentation for building native-feeling apps across every platform the company ships. Full stop. You'll find the complete resource at developer.apple.com/design/human-interface-guidelines — bookmark that now if you haven't already.
The Apple HIG covers six platforms: iOS, iPadOS, macOS, watchOS, tvOS, and visionOS. Each platform gets its own dedicated section because the interaction model on an Apple Watch is nothing like designing for a 27-inch iMac display. Touch gestures, cursor behavior, Digital Crown input, and spatial computing with visionOS all require fundamentally different design thinking.
Within each platform, the documentation breaks into four areas:
Here's what actually changes by platform, because this is where designers frequently get tripped up:
| Platform | Primary Input | Key Design Consideration |
|---|---|---|
| iOS / iPadOS | Touch and Apple Pencil | Touch target sizing, gesture conflicts |
| macOS | Cursor and keyboard | Hover states, menu bar, window management |
| watchOS | Digital Crown, tap | Glanceable content, compact layouts |
| tvOS | Remote, focus model | Focus-driven navigation, distance viewing |
| visionOS | Eyes, hands, voice | Depth, spatial anchoring, window placement |
Apple updates the HIG with each major OS release, so the version you read during initial development may not reflect current standards by the time you ship a major update. Check the changelog when adopting APIs from a new iOS or macOS release.
Users who pick up an iPhone already have expectations baked in. They know where the back button lives, how a sheet dismisses, what a tab bar does. When your app honors those patterns, you get trust for free. When you break them, users don't think "interesting design choice" — they think something is broken.
That's the core business case for following the Apple Human Interface Guidelines. Familiar interaction patterns reduce support tickets, shorten onboarding, and increase the chance someone rates your app five stars simply because nothing frustrated them. Retention improves when your interface matches what users already know how to operate.
There's also a common point of confusion worth addressing directly: the Apple Human Interface Guidelines and the App Store approval guidelines are not the same document, and they don't serve the same purpose.
| Apple Human Interface Guidelines | App Store Review Guidelines |
|---|---|
| Design and UX standards for building great interfaces | Policy rules governing what apps are allowed to do |
| Focused on usability, accessibility, and platform consistency | Focused on content, business model, and technical compliance |
| Maintained by Apple's design team | Enforced by Apple's review team during submission |
| Violation causes friction, poor UX, or negative ratings | Violation causes rejection or removal from the App Store |
That said, the two documents overlap more than most developers expect. Reviewers do flag interfaces that deviate heavily from HIG-defined patterns, particularly when the deviation creates confusing or inaccessible experiences.
Here are the real risk areas where weak HIG alignment can create friction during App Store review:
None of these will automatically get your app rejected under a specific rule citation. But they create the kind of reviewer experience that prompts a closer look, and closer looks lead to revision requests that delay your launch.
Strong HIG alignment protects you on both fronts: it builds a product users want to keep, and it reduces the back-and-forth with Apple's review team that costs you time and shipping momentum.
The HIG is large. If you open it without a clear destination, you'll spend 20 minutes browsing before finding the one paragraph you actually needed. Here's how to get straight to what matters.
The documentation splits into four layers for each platform: Foundations, Patterns, Components, and Technologies. Think of them as moving from broad philosophy down to exact specs.
Three common lookups, done fast:
Quick lookup reference:
| You need guidance on... | Go to... |
|---|---|
| Lock Screen widgets | Technologies > Widgets |
| Live Activities | Technologies > Live Activities |
| SharePlay integration | Technologies > SharePlay |
| CarPlay UI rules | Platform: CarPlay > Components |
The Technologies section is where most developers miss critical requirements. Adding a Live Activity without reading that section first is how you ship a feature that looks wrong on the Dynamic Island. Each Technologies page links back to related Foundations and Components, so follow those cross-references rather than treating each page as standalone.
The iOS design guidelines Apple documents in the HIG aren't abstract principles you interpret freely. They translate into specific, observable choices that reviewers notice and users feel within seconds of opening your app.
Start with clarity, and understand what Apple actually means by it. Clarity isn't about making things look clean. It's about removing ambiguity from every interactive element. A button labeled "Submit" forces the user to remember context. A button labeled "Send Payment" removes all doubt. That difference is what clarity looks like in practice.
The same logic applies to screen density. Compare a settings screen stuffed with toggles, labels, disclosure indicators, and promotional banners to Apple's own Settings app: grouped lists, consistent typography, nothing competing for attention. One screen teaches the user what to do. The other makes them work to figure it out.
Deference is the second principle worth unpacking concretely. Open Photos and notice how the interface disappears when you're viewing an image. The chrome fades, the content takes over. Now think about apps where the navigation bar, toolbar, custom tab bar, and floating action button all exist simultaneously on a single content view. That's the anti-pattern. Your UI elements exist to support user goals, not announce your product.
Here's where most apps fail or pass the HIG test in practice:
HIG-aligned vs. not HIG-aligned
Wallet and Photos both demonstrate content-first design without a single line of explanation. Your app should work the same way: when a user opens it, they see their thing, not your interface. The interface reveals itself when they need it.
Feedback rounds out this trio. Every action a user takes needs an immediate, honest response. A tap that produces no visual change feels broken. A loading state with no indicator feels frozen. Apple's own components handle this automatically through state changes, haptics, and animations built into UIKit. When you replace standard controls with custom ones, you inherit the responsibility of replicating all of that feedback behavior correctly, which is why the HIG pushes you toward system components as the default.
Accessibility in iOS apps is not a polish pass you do the week before launch. It's a structural decision that affects your component choices, your layout logic, and your testing process from the first sprint. Miss it early and you're rewriting label hierarchies, replacing color-coded states, and fighting with VoiceOver navigation on a deadline.
Here's a working checklist your team can use across design, development, and QA:
accessibilityLabel. "Button" tells a VoiceOver user nothing. "Add to cart, large blue sneaker" tells them everything.UIAccessibility.isReduceMotionEnabled flag. Replace motion with cross-fades or static transitions.Sprint-level QA flow:
Designers validate contrast ratios and touch targets in Figma before handoff. Developers attach VoiceOver labels during implementation, not after. At the end of each sprint, a tester runs Accessibility Inspector on the new screens and navigates the full flow using VoiceOver only. Any unlabeled control or broken reading order is a bug, not a nice-to-have. Log it, prioritize it, and close it before the next sprint starts.
The Apple Human Interface Guidelines treat accessibility as a first-class requirement, not an accommodation. Your process should match that priority.
Start with one rule your whole team can agree on: reach for a standard Apple component before you even sketch a custom one. UIKit and SwiftUI give you navigation bars, tab bars, list views, alerts, and form controls that already handle accessibility in iOS apps out of the box. Building custom alternatives from scratch burns sprint capacity and usually produces worse results for VoiceOver users.
Here's a numbered workflow that takes HIG from documentation to shipped product:
Sprint Review HIG Checklist
This checklist turns HIG from a reference document into a concrete quality gate. Your QA engineer and your designer are checking the same criteria against the same standard.
A few things worth connecting across your workflow: your design system documentation should reference HIG URLs directly so developers understand the reasoning, not just the rule. Your designer-developer handoff process needs to carry those HIG specs into component annotations. And your mobile accessibility review workflow should treat the checklist items above as the minimum bar, not the ceiling.
The teams that get this right don't treat HIG as a compliance exercise. They bake it into how work moves through the pipeline.
Stop hunting across random community files for iOS components. Apple publishes official design resources that map directly to the Apple Human Interface Guidelines, and most teams either don't know they exist or aren't using the right ones.
Here's exactly what you need and where to get it:
| Resource | Format / Tool | Download Location | When to Use It |
|---|---|---|---|
| Apple Design Resources: iOS and iPadOS | Figma, Sketch | developer.apple.com/design/resources | Start every iOS project here. Includes native components, color tokens, and text styles synced to current platform patterns. |
| Apple Design Resources: macOS | Figma, Sketch | developer.apple.com/design/resources | Required for any Mac app or Catalyst project where platform-native menus and controls matter. |
| Apple Design Resources: watchOS and tvOS | Sketch | developer.apple.com/design/resources | Use when designing for Apple Watch complications or Apple TV layouts with their unique spatial constraints. |
| SF Symbols App | macOS app (.dmg) | developer.apple.com/sf-symbols | Browse, customize, and export any of 5,000+ symbols before handing specs to engineering. |
The Apple UI kits do one job well: they keep your team building against actual current platform components rather than outdated or community-approximated versions. When Apple ships a new OS with updated control styles, the official kits update too. Your design files stay accurate without manual maintenance.
SF Symbols deserves specific attention because it solves more than just iconography. Every symbol supports multiple weights (from ultralight to black), three scales, and four rendering modes including hierarchical and palette. That means your icons respond to Dynamic Type sizing, adapt to system accessibility settings, and visually match SF Pro without any custom alignment work. You get that consistency for free, which custom icon sets simply can't match across the full range of Apple interfaces.
The Apple Human Interface Guidelines are not a design philosophy document you read once and shelve. They are an active working reference that shapes whether your app gets approved, keeps users engaged, and avoids costly redesigns after launch.
Your practical next step looks like this: open the official HIG and map it against your core screens, run an accessibility audit covering Dynamic Type, contrast ratios, and VoiceOver support, then lock down your design system with standardized components before submitting. That sequence alone catches most of the issues that slow down App Store approvals and frustrate users post-launch.
If you want an expert second set of eyes, Brilworks works with product teams on iOS design system reviews, pre-submission audits, and end-to-end app development built to Apple's standards. Reach out and let's look at what your app actually needs.
The Apple Human Interface Guidelines (HIG) are Apple's official design standards and best practices for creating intuitive, consistent, and high-quality user experiences across iOS, iPadOS, macOS, watchOS, tvOS, and visionOS. The Apple Human Interface Guidelines provide comprehensive guidance on design principles, interface elements, patterns, and platform-specific considerations.
Following the Apple Human Interface Guidelines ensures your app provides a familiar, intuitive experience that aligns with user expectations on Apple platforms. Apps built according to the Apple Human Interface Guidelines have higher approval rates in the App Store, better user reviews, improved accessibility, and greater consistency with native Apple applications.
The Apple Human Interface Guidelines cover all Apple platforms including iOS (iPhone), iPadOS (iPad), macOS (Mac), watchOS (Apple Watch), tvOS (Apple TV), and visionOS (Apple Vision Pro). Each platform section within the Apple Human Interface Guidelines addresses unique interaction patterns, screen sizes, and input methods specific to that device.
The Apple Human Interface Guidelines emphasize three foundational principles: clarity (making content and functionality easy to understand), deference (letting content take center stage with subtle interface elements), and depth (using realistic motion and layering to convey hierarchy). These principles guide all design decisions in the Apple Human Interface Guidelines.
The Apple Human Interface Guidelines are freely available at developer.apple.com/design/human-interface-guidelines. Apple regularly updates the Apple Human Interface Guidelines to reflect new OS features, design patterns, and technologies, making it essential to reference the latest version during design and development.
You might also like