Fix warning due to incorrect delegate function prototype

CQTexperiment
Christopher Snowhill 2021-09-25 13:17:00 -07:00
parent 02de18dde4
commit ceb2e3f7dd
1 changed files with 1 additions and 1 deletions

View File

@ -90,6 +90,6 @@
@protocol AudioPlayerDelegate
- (void)audioPlayer:(AudioPlayer *)player willEndStream:(id)userInfo; //You must use setNextStream in this method
- (void)audioPlayer:(AudioPlayer *)player didBeginStream:(id)userInfo;
- (void)audioPlayer:(AudioPlayer *)player didChangeStatus:(id)status;
- (void)audioPlayer:(AudioPlayer *)player didChangeStatus:(id)status userInfo:(id)userInfo;
@end