I have tried making a static lib on my iPhone but I am not able to use it in another project. I am getting this error:
.objc_class_name_XMLParser\", referen
If you are cross-referencing the static lib project you must drag and drop your lib icon from its project group to the "Link binary with libraries" target group.
Otherwise you must add your library path to the "Other linker flags" build setting in Xcode project or target info.
See Implementing Static Libraries In iPhone also.