我正在尝试构建一个可以与ios3.x和ios4.x一起使用的静态库。我可以使用ios3.0构建一个静态库,它可以在ios3.0中与另一个项目一起使用,但不能在ios4中编译。从ios4到ios3也是如此。
以下是如何重新创建:
在app delegate header的应用程序的didFinishLaunchingWithOptions方法中添加
TestViewController * test = [TestViewController alloc] init;
使用ios3.0模拟器进行编译
当我编译时,我得到:
Ld build/Debug-iphonesimulator/library4Test.app/library4Test normal i386
cd /Users/test/Documents/Testing/library4Test
setenv MACOSX_DEPLOYMENT_TARGET 10.5
setenv PATH "/Developer/GrandpaIPhone/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/GrandpaIPhone/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/GrandpaIPhone/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot /Developer/GrandpaIPhone/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.3.sdk -L/Users/test/Documents/Testing/library4Test/build/Debug-iphonesimulator -L/Users/test/Documents/Testing/library4Test -F/Users/test/Documents/Testing/library4Test/build/Debug-iphonesimulator -filelist /Users/test/Documents/Testing/library4Test/build/library4Test.build/Debug-iphonesimulator/library4Test.build/Objects-normal/i386/library4Test.LinkFileList -mmacosx-version-min=10.5 -framework Foundation -framework UIKit -framework CoreGraphics -llibrary4_1 -o /Users/test/Documents/Testing/library4Test/build/Debug-iphonesimulator/library4Test.app/library4Test
Undefined symbols:
"_objc_msgSendSuper2", referenced from:
-TestViewController didReceiveMemoryWarning in liblibrary4_1.a(TestViewController.o)
-TestViewController viewDidUnload in liblibrary4_1.a(TestViewController.o)
-TestViewController dealloc in liblibrary4_1.a(TestViewController.o)
"__objc_empty_vtable", referenced from:
_OBJC_METACLASS_$_TestViewController in liblibrary4_1.a(TestViewController.o)
_OBJC_CLASS_$_TestViewController in liblibrary4_1.a(TestViewController.o)
"_OBJC_CLASS_$_UIViewController", referenced from:
_OBJC_CLASS_$_TestViewController in liblibrary4_1.a(TestViewController.o)
"_OBJC_METACLASS_$_UIViewController", referenced from:
_OBJC_METACLASS_$_TestViewController in liblibrary4_1.a(TestViewController.o)
".objc_class_name_TestViewController", referenced from:
literal-pointer@__OBJC@__cls_refs@TestViewController in library4_1os3TestAppDelegate.o
"_OBJC_METACLASS_$_NSObject", referenced from:
_OBJC_METACLASS_$_TestViewController in liblibrary4_1.a(TestViewController.o)
ld: symbol(s) not found
collect2: ld returned 1 exit status
答案 0 :(得分:2)
确实不确定,但它看起来像一个链接问题(所有那些.o的东西)。这是我设置iOS静态库的方法。这是一件非常简单的事情,但它确实有效。
构建静态库。默认情况下,它将构建在/ usr / local / lib
中现在创建一个符号链接,以便轻松访问新库。一种简单的方法是打开终端并运行以下命令:
cd ~
ln -s /usr/local/lib
现在打开要在其中使用库的Xcode项目。创建一个名为Libraries或类似的组,按住Ctrl并单击并使用“添加现有文件”来添加库。它将被称为libYourLibrary.a之类的东西 运行项目时,您将收到链接错误。因此,双击项目文件,转到Build>>所有配置并将以下值添加到“库搜索路径”设置:〜/ lib
答案 1 :(得分:0)
您是否只是通过sdk创建一个目标?我为iOS-OSx创建了一个静态库,程序要简单得多。
当然我必须添加一些
#if TARGET_OS_IPHONE
...
#else
...
#endif
代码。您可以添加自己的条件。
答案 2 :(得分:0)
编译器错误正在发生,因为您没有链接到正确的系统框架。深红色的所有符号都来自Foundation.framework,UIKit.framework和libobjc.dylib。
静态库不会自动引入需要链接的所需框架,因此当您使用它们时,必须自己将它们添加到项目中。