我正在尝试快速使用计时器类,但是我的应用程序始终因信号SIGBART而崩溃,并以NSException错误类型的未捕获异常终止。请帮忙。谢谢。
由于计时器的缘故,我将其范围缩小了,但是我不知道如何解决。
import UIKit
import AVFoundation
class playSound
{
var audioPlayer:AVAudioPlayer?
var bpm: Int
var switchOn: Bool
init(switchOn: Bool, bpm: Int)
{
self.bpm = bpm
self.switchOn = switchOn
}
func startSound()
{
self.switchOn = true
}
func changeBpm(bpm:Int)
{
self.bpm = bpm
}
func stopSound()
{
self.audioPlayer?.pause()
self.switchOn = false
}
@objc func repeatSound()
{
DispatchQueue.global(qos: .background).async
{
while (true)
{
let sleepAmount:Float = Float(abs((60/self.bpm)-1))
//print(self.bpm)
//print(sleepAmount)
if (self.switchOn == true)
{
print("hello")
let url = Bundle.main.url(forResource: "click", withExtension: "mp3")
guard url != nil else
{
return
}
do
{
self.audioPlayer = try AVAudioPlayer(contentsOf: url!)
self.audioPlayer?.play()
print(self.bpm)
}
catch
{
print("error")
}
}
}
}
}
}
class ViewController: UIViewController
{
var timer = Timer()
@IBOutlet weak var lbl: UILabel!
@IBOutlet weak var stepperView: UIStepper!
@IBOutlet weak var sliderView: UISlider!
var clickClass = playSound(switchOn: false, bpm: 120)
override func viewDidAppear(_ animated: Bool)
{
clickClass.repeatSound()
}
@IBAction func `switch`(_ sender: UISwitch)
{
do
{
if sender.isOn == true
{
// this is the code causing the error
timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(clickClass.repeatSound), userInfo: nil, repeats: true)
print("play")
}
else
{
timer.invalidate()
clickClass.stopSound()
print("pause")
}
}
}
}
我希望该应用每秒播放一次声音。 错误是:
2019-06-13 22:49:38.226089-0700 Metronome[6695:2566182] -[Metronome.ViewController repeatSound]: unrecognized selector sent to instance 0x145e11dc0
2019-06-13 22:49:38.229502-0700 Metronome[6695:2566182] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Metronome.ViewController repeatSound]: unrecognized selector sent to instance 0x145e11dc0'
*** First throw call stack:
(0x18144127c 0x18061b9f8 0x18135dab8 0x1adc27f60 0x181446ac4 0x18144875c 0x181ec88a4 0x1813d3650 0x1813d3380 0x1813d2bb4 0x1813cdb04 0x1813cd0b0 0x1835cd79c 0x1adbfc978 0x100ffccf0 0x180e928e0)
libc++abi.dylib: terminating with uncaught exception of type NSException
与Thread 1: signal SIGABRT
答案 0 :(得分:0)
您将错误的目标传递给计时器。您要传递clickClass
,而不是self
。选择器不应引用变量,而应引用类。
timer = Timer.scheduledTimer(timeInterval: 1, target: clickClass, selector: #selector(playSound.repeatSound), userInfo: nil, repeats: true)
您还应该注意正确命名。类,结构和枚举名称应以大写字母开头。变量,函数和大小写名称应以小写字母开头。
答案 1 :(得分:0)
您在代码中为计时器设置的目标不正确。如下将目标更改为self.clickClass
:
timer = Timer.scheduledTimer(timeInterval: 1, target: self.clickClass, selector: #selector(clickClass.repeatSound), userInfo: nil, repeats: true)
使用self
目标,应用程序尝试在同一viewcontroller中找到repeatSound
方法。另外,请按照以下链接获取快速命名约定的最佳做法: