有没有办法在 Cocoa 或 Applescript 中获取桌面上图标的大小?最好是可可。
问问题
226 次
2 回答
1
我使用applescript来获得它:
set icon_size to word 3 of (do shell script "defaults read com.apple.finder DesktopViewSettings | grep iconSize")
您可以在 Cocoa 中使用 shell 调用以类似的方式进行操作。
于 2013-08-22T06:49:05.613 回答
0
你可以使用苹果脚本
tell application "Finder"
set p to get the properties of icon view options of the window of the desktop
set iconSize to icon size of p
end tell
于 2013-08-22T06:55:48.300 回答