У меня есть эта ошибка Redundant conformance of 'AnyView' to protocol 'Pressable'
при попытке запустить приведенный ниже код. Может ли кто-нибудь показать ошибку или любой другой способ выполнить тот же логин с протоколами.
class AnyView: UIView, Pressable {
}
// MARK: - Pressable
protocol Pressable: UIView {
}
extension UIView: Pressable {
// touchesBegan
override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesBegan(touches, with: event)
scaleAnimation(value: 0.8)
}
}