从另一个应用程序访问和修改iTunes库

时间:2017-07-19 20:32:47

标签: ios itunes itunes-sdk

我想知道是否有任何方法可以访问我的iTunes数据(歌曲信息)并修改数据(创建新的(智能)播放列表,将歌曲添加到播放列表,为歌曲添加评论) iOS应用程序?

我基本上考虑创建一个可以自定义方式自动排序和整理歌曲的应用。

提前致谢!

1 个答案:

答案 0 :(得分:0)

这里是如何在c#:

    // initialize Itunes connection
    iTunesApp itunes = new iTunesLib.iTunesApp();
    private void Form1_Load(object sender, EventArgs e)
    {
         // get main library playlist
         ITLibraryPlaylist mainLibrary = itunes.LibraryPlaylist;
         // Gets a list of all playlists and adds them to the combo box
         foreach (ITPlaylist pl in itunes.LibrarySource.Playlists)
         {
               comboBox1.Items.Add(pl.Name);
         }
         // Gets the tracks within the mainlibrary
         GetTracks((ITPlaylist)mainLibrary);
         // Sets the datagridview1 data source to the data table.
         dataGridView1.DataSource = dataTable1;
    }

了解您想要使用的iOS应用程序或编程语言会很有帮助。