gpt4 book ai didi

ios - 如何禁用 UIButton 振动

转载 作者:行者123 更新时间:2023-11-28 19:44:17 29 4
gpt4 key购买 nike

直到今天,我一直在模拟器中测试我的应用程序。我第一次在真实的 iPhone 上测试了一个项目。令我感到不快的是,每次我按下按钮时手机都会振动。这没什么大不了的,只是我的特定应用程序有一个内置键盘,每次按下键 (UIButton) 时都会播放音频。

enter image description here

振动声加上音频声音的组合非常分散注意力。 有没有办法以编程方式禁用按钮振动?我不是在问how to disable all vibration对于手机,只是我选择的按钮。我能找到的唯一相关问题正好相反:Making the iPhone vibrate .

我不必让用户在设置中关闭振动,对吧?

更新 1:

从评论来看,这可能是设备特定的问题,或者我以某种方式触发了振动。

这是我播放声音的方式:

import Foundation
import AudioToolbox

class Player {

private let audioFolder = "raw"

func playSoundFromFile(file: String) {
var soundURL: NSURL?
var soundID: SystemSoundID = 0
let filePath = NSBundle.mainBundle().pathForResource("\(audioFolder)/\(file)", ofType: "mp3")
soundURL = NSURL(fileURLWithPath: filePath!)
if let url = soundURL {
AudioServicesCreateSystemSoundID(url, &soundID)
AudioServicesPlayAlertSound(soundID)
}
}
}

这是我的按钮点击 Action :

@IBAction func keyTapped(sender: UIButton) {

let buttonText = sender.titleLabel?.text ?? ""

updateDisplayForIpa(buttonText)

// play sound
if let fileName = singleSound.fileNameForIpa(buttonText) { // converts IPA sound symbol into a filename
player.playSoundFromFile(fileName)
}

}

由于tap调用了一个update display方法,这里就是:

func updateDisplayForIpa(ipa: String) {

if let fileName = singleSound.fileNameForIpa(ipa) {

ipaLabel.text = ipa // UILabel
ipaDescription.text = "\(fileName)_description".localized // UITextView
ipaDescription.scrollRangeToVisible(NSRange(location: 0, length: 0))
example1.setTitle("\(fileName)_example1".localized, forState: UIControlState.Normal) // UIButton
example2.setTitle("\(fileName)_example2".localized, forState: UIControlState.Normal) // UIButton
example3.setTitle("\(fileName)_example3".localized, forState: UIControlState.Normal) // UIButton

}
}

我在这里没有看到任何会触发振动的东西......

更新2

我创建了一个新项目并向 Storyboard添加了一个 UIButton。我在上述应用程序中振动的同一部手机上对其进行了测试。当我点击按钮时没有振动,所以上面的代码一定有什么东西触发了振动。但它会是什么?

最佳答案

AudioServicesPlayAlertSound 会引起振动:

iPhone—plays the specified sound. If the user has configured the Settings application for vibration on ring, also invokes vibration.

我会尝试 AudioServicesPlaySystemSound:

To play a short sound not used as an alert, use AudioServicesPlaySystemSound.

关于ios - 如何禁用 UIButton 振动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33054428/

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