haptics

Haptic feedback provides tactile confirmation of user actions and system events. When designed thoughtfully, haptics transform interfaces from functional to delightful.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "haptics" with this command: npx skills add johnrogers/claude-swift-engineering/johnrogers-claude-swift-engineering-haptics

Haptics

Haptic feedback provides tactile confirmation of user actions and system events. When designed thoughtfully, haptics transform interfaces from functional to delightful.

Overview

Haptics should enhance interactions, not dominate them. The core principle: haptic feedback is like sound design—every haptic should have purpose (confirmation, error, warning), timing (immediate or delayed), and restraint (less is more).

Reference Loading Guide

ALWAYS load reference files if there is even a small chance the content may be required. It's better to have the context than to miss a pattern or make a mistake.

Reference Load When

UIFeedbackGenerator Using simple impact/selection/notification haptics

Core Haptics Creating custom patterns with CHHapticEngine

AHAP Patterns Working with Apple Haptic Audio Pattern files

Design Principles Applying Causality, Harmony, Utility framework

Core Workflow

  • Choose complexity level: Simple (UIFeedbackGenerator) vs Custom (Core Haptics)

  • For simple haptics: Use UIImpactFeedbackGenerator, UISelectionFeedbackGenerator, or UINotificationFeedbackGenerator

  • For custom patterns: Create CHHapticEngine, define CHHapticEvents, build CHHapticPattern

  • Prepare before triggering: Call prepare() to reduce latency

  • Apply design principles: Ensure Causality (timing), Harmony (multimodal), Utility (meaningful)

System Requirements

  • iOS 10+ for UIFeedbackGenerator

  • iOS 13+ for Core Haptics (CHHapticEngine)

  • iPhone 8+ for Core Haptics hardware support

  • Physical device required - haptics cannot be tested in Simulator

Common Mistakes

Haptic feedback on every action — Every button doesn't need haptics. Reserve haptics for critical confirmations (purchase, delete, settings change). Over-haptics are annoying and drain battery.

Triggering haptics on main thread blocks — Long haptic patterns can freeze UI briefly. Use background threads or async for Core Haptics prepare() calls to prevent jank.

Haptic without audio/visual feedback — Relying ONLY on haptics means deaf or deaf-blind users miss feedback. Always pair haptics with sound or visual response.

Ignoring haptic settings — Some users disable haptics system-wide. Check UIFeedbackGenerator.isHapticFeedbackEnabled before triggering. Graceful degradation is required.

AHAP file errors silently — Invalid AHAP files fail silently without errors. Test with Xcode's haptic designer and validate file syntax before shipping.

Forgetting battery impact — Continuous haptic patterns (progress bars, loading states) drain battery fast. Use haptics for state changes only, not ongoing feedback.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

swift-style

No summary provided by upstream source.

Repository SourceNeeds Review
General

ios-hig

No summary provided by upstream source.

Repository SourceNeeds Review
General

swiftui-patterns

No summary provided by upstream source.

Repository SourceNeeds Review