Swift version: 5.6
Modern iPhones have extremely sensitive haptic engines inside, allowing us precise control over taps and vibrations, and even mixing effects – see “How to play custom vibrations using Core Haptics” and “How to modify haptic events over time using CHHapticParameterCurve” for more information on that.
However, not all devices support Core Haptics, which is why you should always check for supported hardware before trying to spin up any haptic feedback. Once you added an import for CoreHaptics
, you can detect haptic availability like this:
if CHHapticEngine.capabilitiesForHardware().supportsHaptics {
// your haptics code here
}
For easier access you could also make the check a computed property, like this:
var hapticsAvailable: Bool {
CHHapticEngine.capabilitiesForHardware().supportsHaptics
}
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 13.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.