Quote:
Originally Posted by Shmoopi
I'm also trying to figure this out. I have a command to reboot the iPhone run at a certain time in my app that works just fine in the simulator but doesn't seem to work on the iPhone itself. Does anyone have any ideas?
Here's the code:
Code:
NSString *cmd = @"killall SpringBoard";
system([cmd UTF8String]);
|
I m not too sure about it but shouldnt this command be like this
Code:
system("killall SpringBoard")
I can be wrong though, as i have read this somewhere.