有没有办法在iOS中使用共享内存?
我正在使用Boost库,并且要初始化共享内存对象时:
shared_memory_object(open_or_create, "sharedMemoryVideo", read_write);
我遇到错误,但仅在物理设备上(模拟器正在工作):
libc++abi.dylib: terminating with uncaught exception of type boost::interprocess::interprocess_exception: Operation not permitted
我正在使用最新版本的Boost库(v1.70)。
答案 0 :(得分:0)
不,这不可能。
我使用带有C指针的经典方式来存储数据。