本文介绍了如何在Swift中重复播放音乐的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何永久地重播背景音乐,现在,当应用加载音乐开始时,但是当一切结束时,我却无法一直重播.

I would like to know how can I replay my background music forever, right now when the app loads the music begins but when it ends all is quiet, how can I make it to replay all the time.

我正在使用AVFoundation Framework.

声明:

var BackgroundMusic = AVAudioPlayer(contentsOfURL: NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("De_Hofnar_Zonnestraal", ofType: "mp3")!), error: nil)

内部viewDidLoad:

BackgroundMusic.play()

推荐答案

numberOfLoops属性设置为负值.

backgroundMusic.numberOfLoops = -1
backgroundMusic.play() // To stop, call stop()

这篇关于如何在Swift中重复播放音乐的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 03:02