I'm using MPMusicPlayerController, specifically with setNowPlayingItem protocol and it's for cydia. But I have some issues and theos' warning when i make. It seems that some of the protocols and methods are not working and I receive some warning like this:

Tweak.xm:177: warning: ‘MPMusicPlayerController’ may not respond to ‘-skipToPreviousItem’
Tweak.xm:188: warning: ‘MPMusicPlayerController’ may not respond to ‘-pause’
Tweak.xm:193: warning: ‘MPMusicPlayerController’ may not respond to ‘-play’
Tweak.xm:201: warning: ‘MPMusicPlayerController’ may not respond to ‘-skipToNextItem’
Tweak.xm:317: warning: ‘MPMusicPlayerController’ may not respond to ‘-setNowPlayingItem:’

Have anyone some ideas? I enter the protocol already in prototype

link|improve this question

feedback

2 Answers

I don't think it's because of cydia - it sounds like a compilation issue.

Have you definitely got

#import <MediaPlayer/MediaPlayer.h>

in your file?

link|improve this answer
Already imported ;) – iStopped Oct 14 '11 at 18:51
Hmm, that's odd. Can you add some code to the question - the lines that cause the warnings and the line that creates for music player? – deanWombourne Oct 16 '11 at 17:07
MPMusicPlayerController *mp = [MPMusicPlayerController iPodMusicPlayer]; [mp setNowPlayingItem:anMPMediaItem]; – iStopped Oct 20 '11 at 14:00
feedback

have you added the MediaPlayer.framework to your project?

  1. select your project in the project navigator
  2. select your target on the right side
  3. select the "Build Phases" tab
  4. open "Link Binary With Libraries"
  5. add your framework
link|improve this answer
Already done... – iStopped Oct 20 '11 at 14:00
A missing framework would cause linker errors, not compiler warnings :( – deanWombourne Oct 20 '11 at 14:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.