OGeek|极客世界-中国程序员成长平台

标题: ios - Xcode 6.0.1 新警告 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 02:28
标题: ios - Xcode 6.0.1 新警告

在更新到最新版本的 Xcode 之前,我没有收到此错误警告?

Incompatible pointer types initializing 'MPNowPlayingInfoCenter' with an expression of type 'NSNotificationCenter’

代码:

- (void)doUpdateNowPlayingCenter 
{
    if (!self.updateNowPlayingCenter || !self.nowPlayingItem)
    {
        return;
    }

    Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");

    if (!playingInfoCenter)
    {
        return;
    }

    MPNowPlayingInfoCenter *center = [playingInfoCenter defaultCenter];
    NSDictionary *songInfo = @
    {
         MPMediaItemPropertyTitle: [self.nowPlayingItem valueForProperty:MPMediaItemPropertyTitle],
         MPMediaItemPropertyPlaybackDuration: [self.nowPlayingItem valueForProperty:MPMediaItemPropertyPlaybackDuration]
    };

    center.nowPlayingInfo = songInfo;
}



Best Answer-推荐答案


您可以通过这种方式转换默认中心来消除警告:

MPNowPlayingInfoCenter *center = (MPNowPlayingInfoCenter*)[playingInfoCenter defaultCenter];

关于ios - Xcode 6.0.1 新警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26220537/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://sqlite.in/) Powered by Discuz! X3.4