iphone4s感覺好幾天不重啟會比較卡,就每天凌晨4點定時重啟下系統吧。
1、ios定時任務配置文件
info.chenpeng.iphone.plist
<!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”>
<plist version=”1.0″>
<dict>
<key>Label</key>
<string>info.chenpeng.iphone.plist</string>
<key>POSIXSpawnType</key>
<string>Interactive</string>
<key>ProgramArguments</key>
<array>
<string>/var/mobile/chenpeng/cron.sh</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Minute</key>
<integer>0</integer>
</dict>
<key>LowPriorityIO</key>
<true/>
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
<key>UserName</key>
<string>root</string>
<key>KeepAlive</key>
<false/>
<key>LaunchOnlyOnce</key>
<false/>
<key>RunAtLoad</key>
<false/>
</dict>
</plist>
2、需要每小時跑任務的腳本
cron.sh
執行日志如下:
另外我還加了個每小時上傳iphone系統信息、網絡信息到服務器的任務,以防丟失,嘿嘿。