0
我把歌曲變成一個表中的所有觀點繼續比賽,當我在詳細頁中工作中發揮的歌曲,當我回來的歌曲停,我想在所有視圖如何使音樂在
繼續發揮的ViewController
if let audio=NSBundle.mainBundle().pathForResource(navigationItem.title , ofType: "mp3") {
let url=NSURL (fileURLWithPath: audio)
do {
player = try AVAudioPlayer (contentsOfURL: url)
}
catch{"erorr"}
player.play()
} else {
print("erorr")
}
tableViewController
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
self.performSegueWithIdentifier("indeaa", sender: tableView)
}
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue.identifier == "indeaa" {
let vc = segue.destinationViewController as UIViewController
let indexpath:NSIndexPath = tableaa.indexPathForSelectedRow!
vc.title = arr[indexpath.row]
}
}
因此,爲了澄清,您有視圖A繼續查看B.視圖B播放音頻,並且當您導航回視圖A時,音頻停止。那是對的嗎? – kpsharp
是........... –
查看下面的@toast的答案。這是你想要的。 – kpsharp