I got an error: Use of unresolved identifier 'UINotificationFeedbackGenerator'
I got an error: Use of unresolved identifier 'UINotificationFeedbackGenerator'
在为触觉反馈实例化 'UINotificationFeedbackGenerator' 时,出现此编译器错误:
Use of unresolved identifier 'UINotificationFeedbackGenerator'
我是这样实例化它的:
let hapticNotificationFeedback = UINotificationFeedbackGenerator()
hapticNotificationFeedback?.prepare()
var hapticImpactFeedback = UIImpactFeedbackGenerator(style: .medium)
我在单独文件的视图控制器扩展中对此进行了实例化。
因为它是一个视图控制器class扩展文件,所以你需要在这个文件中导入 UIKit
import UIKit
在为触觉反馈实例化 'UINotificationFeedbackGenerator' 时,出现此编译器错误:
Use of unresolved identifier 'UINotificationFeedbackGenerator'
我是这样实例化它的:
let hapticNotificationFeedback = UINotificationFeedbackGenerator()
hapticNotificationFeedback?.prepare()
var hapticImpactFeedback = UIImpactFeedbackGenerator(style: .medium)
我在单独文件的视图控制器扩展中对此进行了实例化。
因为它是一个视图控制器class扩展文件,所以你需要在这个文件中导入 UIKit
import UIKit