gpt4 book ai didi

ios - UIButton 中的 Swift 3D Touch Force Value

转载 作者:搜寻专家 更新时间:2023-10-31 22:33:13 25 4
gpt4 key购买 nike

如何测量应用于 UIButton 功能的 3D 触摸力?我想用它来快速更改 AVAudioPlayer 属性的音量。

最佳答案

您可以为所有 UIView 类\子类

使用识别 3D 触摸的东西

自定义类

class customButton : UIButton{
override func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {
for touch in touches{
print("% Touch pressure: \(touch.force/touch.maximumPossibleForce)");
}
}

override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
print("Touches End")
}
}

而不是 UIButton Touch Observer (TouchUpInside\TouchUpInside..) 只需使用上面的方法
这将适用于所有 UIView

class customView : UIView ....//same code as above

关于ios - UIButton 中的 Swift 3D Touch Force Value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35238278/

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