我为 ios 和 mac os x 开发了 air 扩展。
我在 ios 和 mac 上使用相同的代码。
对于ios来说一切都好。
但在 mac - 有问题。
在扩展中,我使用 std::vector。代码示例:
vector<Type*>* types;
types = new vector<Type*>();
Type* type = new Type();
types->push_back(type);
应用程序按行崩溃:
types->push_back(type);
我尝试添加 try/catch 块 - 但应用程序也崩溃了。
我不知道出了什么问题。此代码在 ios 和 mac 的控制台应用程序中运行良好。