所以我试图在iOS应用程序中启动并运行ObjCMongoDb但我一直收到此错误。
ignoring file /Users/user/Documents/Programming/ObjCMongoDB/ObjCMongoDB.framework/ObjCMongoDB, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (armv7): /Users/user/Documents/Programming/ObjCMongoDB/ObjCMongoDB.framework/ObjCMongoDB
Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_BSONDecoder", referenced from:
objc-class-ref in MongoDbConnection.o
"_OBJC_CLASS_$_MongoKeyedPredicate", referenced from:
objc-class-ref in MongoDbConnection.o
"_OBJC_CLASS_$_MongoUpdateRequest", referenced from:
objc-class-ref in MongoDbConnection.o
"_OBJC_CLASS_$_MongoConnection", referenced from:
objc-class-ref in MongoDbConnection.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我觉得这意味着该框架不是针对iOS而是针对Mac OS X编译的。
有谁知道如何将ObjCMongoDb集成到iOS应用程序中?
谢谢!
答案 0 :(得分:1)
要在iOS上使用框架,您需要将其构建为静态库,而ObjCMongoDB中的Xcode项目不提供方法。
最简单的方法是遵循getting started on Mac OS的说明,这些说明在iOS上同样有效。