我有一个录音应用程序。如何在锁定屏幕打开时显示应用程序正在录制,就像 iPhone 附带的语音备忘录应用程序一样。尝试使用 MPNowPlayingInfoCenter 玩,但没有任何工作。有任何想法吗?
这是我尝试在开始录制的 IBAction 中实现的内容
Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");
if (playingInfoCenter) {
NSMutableDictionary *songInfo = [[NSMutableDictionary alloc] init];
MPMediaItemArtwork *albumArt = [[MPMediaItemArtwork alloc] initWithImage: [UIImage imageNamed:@"record.png"]];
[songInfo setObject:@"Recording" forKey:MPMediaItemPropertyTitle];
[songInfo setObject:albumArt forKey:MPMediaItemPropertyArtwork];
[[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:songInfo];
}