问题
Is there any way to restart the Springboard programmatically, but prevent the iPhone from turning on its screen lock following this?
Have tried switching off the screen lock in Settings, but it'll still kick in after a Springboard restart.
(The phone is jailbroken.)
回答1:
As of iPhone OS 3.x, You can bypass the lock screen with notify_post("com.apple.language.changed")
.
This method no longer work in iOS 5.x because the system now checks whether the language is actually changed before respringing.
However, you could do the following to achieve the same effect:
- Set the preference
SBLanguageRestart
ofcom.apple.springboard
to true (using CFPreferencesSetAppValue and CFPreferencesAppSynchronize, for instance, or directly changing/var/mobile/Library/Preferences/com.apple.springboard.plist
) - Kill SpringBoard.
回答2:
Not really a programming question but no, you can't stop the lock screen.
来源:https://stackoverflow.com/questions/1764492/restart-springboard-without-locking-screen