我曾尝试过以前的问题教程,但仍然无法弄清楚如何播放背景音乐。我只想在循环中播放简单的背景音乐。我试过这个:
NSString *path = [[NSBundle mainBundle] pathForResource:@"drums" ofType:@"mp3"];
theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPathath] error:NULL];
theAudio.delegate = self;
theAudio.numberOfLoops = -1;
[theAudio play];
我仍然无法发挥它。我也尝试改变我的info.plist的后台任务以适应音频,但无法找到在哪里做。
答案 0 :(得分:1)
在你的plist中添加此键
page =requests.get('http://edition.cnn.com/election/results/states/arizona/house/01')
soup = BeautifulSoup(page.content, "lxml")
print(soup)
在代码中添加更多代码
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
</array>
这项工作适合我。