我已经浏览了很多youtube教程并且随处可见。我想创建一个实时流媒体应用程序,我想点击按钮播放它播放流媒体音频,当我点击停止按钮它停止。这是我的代码。虽然在我的设备上没有声音实际播放。我不知道我做错了什么。
我已在.m和.h
中导入#import <AVFoundation/AVFoundation.h>
-(IBAction)LiveStream3:(id)sender {
NSString *stream = @"http://audio2.radioreference.com/il_chicago_police2.mp3";
NSURL *url = [NSURL URLWithString: stream];
myAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:url fileTypeHint:stream error:nil];
myAudio.numberOfLoops = 0;
[myAudio play];
[streamTitle setText:@"Chicago"];
NSLog(@"Playing");
}
-(IBAction)stopAudio:(id)sender {
[myAudio stop];
[streamTitle setText:@""];
NSLog(@"Stop");
}