Theos iOS 11 system() 函数
Theos iOS 11 system() function
我将 Phone 更新为 IOS 11,不再支持 system() 函数。我想在按下按钮后关机,我该怎么做? Respring 与 posix_spawn 一起工作正常。我的旧代码是:
(void)shutdownButtonPressed{
system("shutdown");
}
从 the shutdown
source 看来,正确的做法是:
#define RB_HALT 0x08
extern void* reboot3(int how);
(void)shutdownButtonPressed {
// for a real reboot, just pass 0 instead of RB_HALT
reboot3(RB_HALT);
}
我将 Phone 更新为 IOS 11,不再支持 system() 函数。我想在按下按钮后关机,我该怎么做? Respring 与 posix_spawn 一起工作正常。我的旧代码是:
(void)shutdownButtonPressed{
system("shutdown");
}
从 the shutdown
source 看来,正确的做法是:
#define RB_HALT 0x08
extern void* reboot3(int how);
(void)shutdownButtonPressed {
// for a real reboot, just pass 0 instead of RB_HALT
reboot3(RB_HALT);
}