2012-06-13 20 views
0

我知道我可以通過以下操作檢索MPMediaItem的作品:設置MPMediaItem的作品

MPMediaItemCollection *collection; 
/* Get media item collection here */ 
MPMediaItem *item = [[collection items] objectAtIndex:0]; 
MPMediaItemArtwork *artwork = [item valueForKey:MPMediaItemPropertyArtwork]; 

我想用另一個替換藝術品圖像。我怎麼做到這一點?

我試過以下,但它不起作用。

UIImage *newImage; 
/* get image here */ 
MPMediaItemArtwork *artwork = [[MPMediaItemArtwork alloc] initWithImage:newImage]; 
[item setValue:artwork forKey:MPMediaItemPropertyArtwork]; 

的運行時異常被拋出以下消息:
this class is not key value coding-compliant for the key artwork.

回答