How do i play sound whenever screen is taped? this is a code I have now, where I check if screen has been touched and than it does some things...
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
if TapsValid == true {
Score++
if BallRight == true {
BallChange = false
} else {
BallChange = true
}
}
}