是否可以以编程方式访问Apple Notes(即macos和ios中预装的应用程序)内容
答案 0 :(得分:6)
关于macOS的说明可以使用AppleScript编写脚本
要注销所有笔记,请打开脚本编辑器并使用以下内容创建一个新脚本,然后点击播放按钮:
tell application "Notes"
repeat with theNote in notes
set theNoteName to name of theNote
log theNoteName
set theNoteBody to body of theNote
log theNoteBody
log "----"
end repeat
end tell
或者,创建一个包含上述内容的文本文件,并将其保存为notes.scpt
,然后从终端运行:
osascript notes.scpt