I create a static library file and used this in another project and build it then I got the error message as bellow.
Undefined symbols for architecture i386:
“_OBJC_CLASS_$_Test_For_Static”, referenced from:
objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Please give suggestions to resolve this error.I create a static library by following this link
http://www.icodeblog.com/2011/04/07/creating-static-libraries-for-ios/
Add both projects into an Xcode workspace and simply make the static library a dependency of the other project. You will need to configure header search paths and then Xcode should take care of the rest automatically.