Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是ios新手。我面临一个关于许可的问题。fork() 失败(1:不允许操作)
我想为 ios 构建一个用 c 实现的开源库。可以在ios上使用“fork()”函数吗?如果可以,我该如何解决这个问题?
不,每个 iOS 应用程序都是一个单独的进程。您可以创建新线程,而不是新进程。
另请参阅使用 fork() 将应用程序移植到 pthread_create()
fork() can only be used on jailbroken phones.