objective c - Streaming Audio only from a link -
i have went through many youtube tutorials , looked everywhere. want create live streaming app, want click button play , plays streaming audio, , when click stop button stops. here code. although on device no sound plays. don't know im doing wrong.
i have imported #import <avfoundation/avfoundation.h> in both .m , .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"); }
Comments
Post a Comment