在iOS中运行子进程?
是否可以在 iOS 中启动新的子流程? (来自常规申请) 如果可以的话,该怎么做呢?
Is it possible to launch a new sub-process in iOS? (from regular application)
If possible, how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然越狱应用程序可能可以这样做,但 SDK 不允许这样做。您只能进行自己的申请流程。它可以在后台运行(在有限的时间内)和/或像您所说的那样拥有自己的多个线程,但它们都必须属于该一个进程。
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.