iOS中的Brightcove实现+无法识别的选择器

时间:2014-12-15 09:34:43

标签: ios unrecognized-selector brightcove

在我的iOS应用程序中集成Brightcove库(版本4.2.1)时,我遇到了一个奇怪的问题。

    -(void) setupForBrightcove{
NSString *playlistID = [NSString stringWithFormat:@"%lld",self.playListID];
BCOVCatalogService *catalog = [[BCOVCatalogService alloc] initWithToken:VIDEO_TOKEN];

//Find Playlist
    [catalog findPlaylistWithPlaylistID:playlistID
                             parameters:nil
                             completion:^(BCOVPlaylist *playlist,
                                          NSDictionary *jsonResponse,
                                          NSError      *error) {
}];

}

我刚用有效的播放列表ID和视频令牌运行了这段代码。

它给了我以下错误:

-[__NSDictionaryM bcov_UTF8EncodedRequestParameterString]: unrecognized selector sent to instance 0x7a40f910

此处唯一的词典是jsonResponse

有人可以帮忙吗? 感谢。

1 个答案:

答案 0 :(得分:0)

听起来你并没有将-ObjC添加到你的"其他链接标记"在您的Xcode项目构建设置中。请务必完全遵循installation steps