Hello! I'm trying to force re-spring a device, but I get this error for using a system("") function. Please help me! I need this re-spring to work! (Im using Objective-C in xcode)
Here's a screenshot: http://imgur.com/gallery/nWHQZ
I’m not sure what “re-spring” means but:
Your image references “SpringBoard”, so presumably you’re working on iOS.
is not supported on iOS, and neither issystem
or any other traditional UNIX mechanism to launch child processes.posix_spawnThe iOS sandbox will prevent you from sending signals to other processes.
Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware
let myEmail = "eskimo" + "1" + "@apple.com"