Restart Springboard without locking screen?
Is there any way to restart the开发者_StackOverflow社区 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.)
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.
Not really a programming question but no, you can't stop the lock screen.
精彩评论