1、越狱
2、写一个守护进程
3、在 /Library/LaunchDaemons放一个list文件。3
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>MyScript</string>
<key>ProgramArguments</key>
<array>
<string>/path/to/Application.app/Application</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StartInterval</key>
<integer>900</integer>
</dict>
</plist>
path/to/Application.app/Application:指定运行的程序。
请注意啊,启动的程序必须为 守护进程即是没有界面的程序了,不可能启动一个app了