我在将新创建的移动SPPlaylist
到 (可能是新创建的)时遇到问题SPPlaylistFolder
。
这个想法是在用户的 Spotify 帐户中创建一个文件夹,我可以在其中添加从我的应用程序生成的播放列表。如果没有创建这样的文件夹,我将创建一个新SPPlaylistFolder
文件夹并保存文件夹 ID 以供以后使用。
这就是我正在做的事情(我省略了对这个主题不感兴趣的部分代码):
如果 a
folderId
之前已保存(即创建了一个文件夹),则使用该 ID 加载文件夹实例:... NSError *error = nil; if (folderId > 0) { // try to fetch folder folder = [[SPSession sharedSession] playlistFolderForFolderId:folderId inContainer:container]; } if (folder == nil) { // create folder folder = [container createFolderWithName:@"My Folder" error:&error]; // save a reference to the folder in an instance var _appFolder = [folder retain]; // (also saving folder.folderId in NSUserDefaults) } ...
创建一个
SPPlaylist
:[[[SPSession sharedSession] userPlaylists] createPlaylistWithName:@"My Playlist"]
。使用 KVO 观察容器的
playlists
属性并在创建播放列表时收到通知:[[[SPSession sharedSession] userPlaylists] addObserver:self forKeyPath:@"playlists" options:0 context:nil]
.观察
playlists
属性并将创建的播放列表移动到我的SPPlaylistFolder
(containerPlaylist
是我确定为要移动的播放列表):... // identify the index of the containerPlaylist NSInteger playlistIndex = [[[[SPSession sharedSession] userPlaylists] playlists] indexOfObject:containerPlaylist]; // move playlist NSError * error = nil; BOOL success = [container movePlaylistOrFolderAtIndex:playlistIndex ofParent:nil toIndex:0 ofNewParent:_appFolder error:&error]; if (success) { // This should be a great success. But the playlist hasn't been moved, although the error variable is nil. } ...
完成这些步骤后,播放列表和文件夹都已创建,但尚未移动播放列表。而且我没有收到任何错误,表明该movePlaylistOrFolderAtIndex
方法的任何无效输入。
我在这里遗漏了一些明显的东西吗?或者移动功能是否存在某种缺陷?
注意:我还尝试使用此代码移动之前创建的播放列表(即将所有名为“我的播放列表”的播放列表移动到文件夹中)。
编辑1:我对此进行了更深入的调查,实际上正在进行一些动人的行动。但我不得不重写一些代码并多次执行移动(或在稍后阶段)。这似乎与 SPSession 中的数据未完全同步/最新(?)有关,因为稍后使用新会话登录时可以移动播放列表。
是否可能是同步问题,即 libspotify 认为SPPlaylistFolder
已创建并将SPPlaylist
s 移至它,但实际上尚未创建它?