Swift version: 5.10
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 Take the pain out of configuring and testing your paywalls. RevenueCat's all new Paywall Editor allow you to remotely configure your paywall view without any code changes or app updates.
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.