1
我寫了launchDaemon.plist,並把它放到/System/Library/LaunchDaemon/
。如何在不重新啓動ios設備的情況下加載launchDaemon.plist?
如何在不重新啓動iOS設備的情況下加載它?
我寫了launchDaemon.plist,並把它放到/System/Library/LaunchDaemon/
。如何在不重新啓動ios設備的情況下加載launchDaemon.plist?
如何在不重新啓動iOS設備的情況下加載它?
如果通過ssh
登錄到您的iOS設備,您可以使用此命令行:
launchctl load /System/Library/LaunchDaemons/launchDaemon.plist
,當然還有,要停止守護
launchctl unload /System/Library/LaunchDaemons/launchDaemon.plist
注意:如果您打算將其發佈爲產品,而不僅僅是爲了您自己的使用,我建議遵循以下常規命名約定,並將你的plist文件命名爲com.mycompany.MyCrazyDaemon.plist
。