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

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Magento/PHP - Get phones on all members in a customer group -

session - Logging Out Using PHP -