iTunes有一种对歌曲进行排序的方法,即标题为“a”或“the”的歌曲在没有它的情况下被识别。有没有办法访问这个“排序标题”?我很确定Apple Music会这样做,我猜它可以通过
访问customize: function (win) {
$(win.document.body).find('table').addClass('display').css('font-size', '9px');
$(win.document.body).find('tr:nth-child(odd) td').each(function(index){
$(this).css('background-color','#D0D0D0');
});
$(win.document.body).find('th,td').css('text-align','center');
}
答案 0 :(得分:1)
所有sort属性的基本格式是sortProperty,即sortTitle,sortAlbumTitle,sortAlbumArtist等。
func sortProperty(for property: String) -> String{
return "sort" + property.prefix(1).uppercased() + property.dropFirst()
}