I get this error, and I dont get how to fix it?
class ‘SoundTap_HDViewController’ does not implement the ‘AVAudioPlayerDelegate’ protocol
Any help?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are going to conform to a protocol, you need to implement its required methods. AVAudioPlayerDelegate has no required methods, so you may be trying to call a delegate method without adding the protocol. Does your class look something like:
Protocols are listed between the <> and separated by commas.