Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this application and this application says it displays live wallpapers on lock screen. We have similar requirement how does going to take start from ?

From reviews came to know that it is playing music in background with silent volume but it is not relevant to setting wallpapers.

Totally bummer topic for us. Can any one please suggest some point where to begin.. ?

Referred this and Referred this questions our our forum but says that it won't be approved by apple. So How does current application exist on store ?

Note: Please consider this as genuine programming questions as there is no starting point We can found.

share|improve this question

2 Answers

If you play music, you can use MPNowPlayingInfoCenter (Available in iOS 5.0 and later.) to set things like cover art, title and artist on the lock screen. Your code could look like this:

NSMutableDictionary *currentTrackData = [[NSMutableDictionary alloc] init];
[currentTrackData setObject:"Some text" forKey:MPMediaItemPropertyTitle];

MPMediaItemArtwork *mediaItemArtwork =[[MPMediaItemArtwork alloc] initWithImage:[UIImage imageNamed:@"your image path"]];
[currentTrackData setObject:mediaItemArtwork forKey:MPMediaItemPropertyArtwork];
[mediaItemArtwork release];

[MPNowPlayingInfoCenter defaultCenter].nowPlayingInfo = currentTrackData;

Dont forget to import the media player framework:

#import <MediaPlayer/MediaPlayer.h>
share|improve this answer

The live lockscreen app must be doing it this way (MPNowPlayingInfoCenter) as you cant play music whilst using the app

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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