我正在使用此代码将 iTunes 中的每个选定曲目添加到 AppleScript Obj-C 中的列表中:
tell application "iTunes"
set these_titles to {}
if selection is not {} then
set mySelection to selection
repeat with aTrack in mySelection
if class of aTrack is file track then
set end of these_titles to ((name of aTrack) as string)
end if
end repeat
end if
end tell
我有这一行来在 GUI 的文本框中显示输出:
trackTable's setStringValue_(these_titles)
但结果是这样的:
有什么方法可以让每个列表项放在一行上,不带引号和括号?