Currently i am doing unziping a zip file program using libzip library, following this link - http://www.nih.at/libzip/index.html . i want to include the library and frame work in my xcode project .
From the demo project that has give in their site , i included the lib directory and tried to link but i am getting a linker error that
ld: framework not found libzip_iOS clang: error: linker command failed with exit code 1 (use -v to see invocation)
Actually my task is to include libzip library and unzipping the zip file on click of button . so i know how to access C++ class in objective C , just getting a linker error because of Libzip library.
i am new in xcode is anyone know about how to take library and link in xcode?