Use AudioStreamer to quickly click the next or last button, and the audio will be resolved repeatedly ., Audiostreamer

Source: Internet
Author: User

Use AudioStreamer to quickly click the next or last button, and the audio will be resolved repeatedly ., Audiostreamer

To solve this problem, I add a new attribute to the AudioStreamer. h file.

@ Property (nonatomic, strong) NSURL * musicUrl;

And a singleton method:

+ (Id) sharedStreamer;

At the same time, the singleton method and the set Method of musicURL are implemented in the AudioStreamer. m file.

+ (Id) sharedStreamer {

Static AudioStreamer * streamer = nil;

Static dispatch_once_t tocken;

Dispatch_once (& tocken, ^ {

Streamer = [[AudioStreamer alloc] init];

});

Return streamer;

}

 

-(Void) setMusicUrl :( NSURL *) musicUrl {

Url = musicUrl;

[[Nsicationcenter center defacenter center] addObserver: self selector: @ selector (handleInterruptionChangeToState :) name: ASAudioSessionInterruptionOccuredNotification object: nil];

}

 

In this way, the streamer object can be created as follows:

Streamer = [AudioStreamer sharedStreamer];

[Streamer stop];

Streamer. musicUrl = url;

[Streamer start];

 

Solve the problem .. Good night!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.