Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running subprocess in iOS?

Tags:

subprocess

ios

Is it possible to launch a new sub-process in iOS? (from regular application) If possible, how to do that?

like image 235
eonil Avatar asked Jan 22 '11 12:01

eonil


1 Answers

While it may be possible with jailbreak apps, the SDK does not allow that. You are only allowed your own application's process. It can operate in the background (for a limited amount of time) and/or have however many threads of its own as you say, but they all have to belong to that one process.

like image 76
BoltClock Avatar answered Sep 26 '22 15:09

BoltClock