gpt4 book ai didi

ios - 向 UIButton touchesBegan 添加声音的协议(protocol)

转载 作者:行者123 更新时间:2023-11-28 08:40:53 25 4
gpt4 key购买 nike

我创建了一个协议(protocol),添加了播放声音的功能:

protocol ButtonSound { }

extension ButtonSound where Self: UIButton {
func clickSound() { AudioServicesPlaySystemSound(1104) }
}

但是使用这个,我必须手动为每个自定义按钮类将 clickSound 添加到 touchesBegan

是否可以对 UIButton 进行扩展,使其仅符合 ButtonSound 协议(protocol)并在那里覆盖 touchesBegan

最佳答案

不,您不能在协议(protocol)扩展中覆盖父类(super class)方法。正如其他人所说,这是子类化的情况。

关于ios - 向 UIButton touchesBegan 添加声音的协议(protocol),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36539758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com