mirror of
https://github.com/EmergeTools/Pow.git
synced 2026-03-25 08:55:50 +00:00
Start/stop engine when entering background/foreground (#70)
This commit is contained in:
parent
f0d0f3e72d
commit
f2e23ad418
1 changed files with 14 additions and 1 deletions
|
|
@ -5,8 +5,21 @@ import CoreHaptics
|
|||
|
||||
internal struct Haptics {
|
||||
private static var engine: CHHapticEngine? = {
|
||||
return try? CHHapticEngine()
|
||||
let engine = try? CHHapticEngine()
|
||||
addHapticEngineObservers()
|
||||
return engine
|
||||
}()
|
||||
|
||||
private static func addHapticEngineObservers() {
|
||||
// Without stopping the CHHapticEngine when entering background mode, haptics are not played when the app enters the foreground.
|
||||
// See https://github.com/EmergeTools/Pow/issues/69
|
||||
NotificationCenter.default.addObserver(forName: UIApplication.didEnterBackgroundNotification, object: nil, queue: nil) { _ in
|
||||
engine?.stop()
|
||||
}
|
||||
NotificationCenter.default.addObserver(forName: UIApplication.willEnterForegroundNotification, object: nil, queue: nil) { _ in
|
||||
try? engine?.start()
|
||||
}
|
||||
}
|
||||
|
||||
private static var supportsHaptics = CHHapticEngine.capabilitiesForHardware().supportsHaptics
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue