I have SettingsVC ("Photo" there are 2 switch) and MainVC ("Code" there is a function for adding haptic feedback buttons).
How can I make it so that when you turn off the Switch in Setting, then the function would stop working?
@IBAction func Vib(_ sender: UIButton) {
let generator = UIImpactFeedbackGenerator(style: .light)
generator.impactOccurred()
}