initial
This commit is contained in:
38
Pods/SwiftEntryKit/Source/Model/EntryAttributes/EKAttributes+HapticFeedback.swift
generated
Normal file
38
Pods/SwiftEntryKit/Source/Model/EntryAttributes/EKAttributes+HapticFeedback.swift
generated
Normal file
@@ -0,0 +1,38 @@
|
||||
//
|
||||
// EKAttributes+HapticFeedback.swift
|
||||
// SwiftEntryKit
|
||||
//
|
||||
// Created by Daniel Huri on 5/1/18.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
public extension EKAttributes {
|
||||
|
||||
/** Notification haptic feedback type. Adds an additional sensuous layer. Read more at UINotificationFeedbackType. Available from iOS 10, but you are not required to check the iOS version before using it. It's automatically handled by the kit.
|
||||
*/
|
||||
enum NotificationHapticFeedback {
|
||||
case success
|
||||
case warning
|
||||
case error
|
||||
case none
|
||||
|
||||
@available(iOS 10.0, *)
|
||||
var value: UINotificationFeedbackGenerator.FeedbackType? {
|
||||
switch self {
|
||||
case .success:
|
||||
return .success
|
||||
case .warning:
|
||||
return .warning
|
||||
case .error:
|
||||
return .error
|
||||
case .none:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
var isValid: Bool {
|
||||
return self != .none
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user