我完全忘記了Xcode AppleScript應用程序。Xcode:讀取plist數據並將它們顯示爲文本
基本上,應用程序將從plist文件讀取值。
我的AppleScript來讀取這個變量是
set the plistfile_path to "~/Desktop/example.plist"
tell application "System Events"
set p_list to property list file (plistfile_path)
-- read the plist data
set theNameFromPlist to value of property list item "theName" of p_list
set theEmailFromPlist to value of property list item "theEmail" of p_list
set thecreationDateFromPlist to value of property list item "creationDate" of p_list
end tell
現在我怎麼這個集成到Xcode的?
我應該繼續AppDelegate.applescript並在「applicationWillFinishLaunching_(aNotification)」這個腳本之後的任何地方添加嗎?
followed by property NametextField : theNameFromPlist
我在這裏可能完全錯了,只是想不到。 PS迅速將做到這一點,如果任何容易
在Xcode中忘了'系統Events'和使用AppleScriptObjC中的原生Cocoa類。 – vadian