我有一個NSArray從XML數據加載視頻文件。當你按下一個數組項時,它會用一個應該加載NSString url的按鈕加載一個視圖。這是我正在使用的代碼。來自URL的不兼容指針MPMoviePlayer
-(IBAction)playMovie:(id)sender
{
RSSItem* item = (RSSItem*)self.description;
NSURL *movieUrl = [NSURL URLWithString: item];
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:movieUrl];
[self.view addSubview:moviePlayerController.view];
moviePlayerController.fullscreen = YES;
[moviePlayerController play];
}
我收到警告「不兼容的指針類型發送'的RSSItem * _strong爲鍵入‘的NSString *’
我已經試過各種參數,我能想到的字符串轉換爲字符串並得到它的工作。請讓我知道,如果這個問題太具體的或基本的論壇。
謝謝!
什麼是RSSItem? – 2013-03-21 02:59:33