Swift 2 / iOS 9 - libz.dylib not found
I had the same problem. I found some kind of way around.
- Go to Build Phases >Link Binary with Librairies > + > Add other
- Once in the file selection window do "CMD"+Shift+G (Go to folder) and type /usr/lib/
- From /usr/lib you can add : libz.dylib and more...
- Compile and have fun
Remove all dynamic libraries (dylib) from the linking with binaries phase. It will find these libraries on its own.
libz.dylib is now found under libz.tbd quote from the Apple developer forums:
For those who are curious, the .tbd files are new "text-based stub libraries", that provide a much more compact version of the stub libraries for use in the SDK, and help to significantly reduce its download size.
Hopefully more documentation will be coming soon.
edit
To clearify it, i will cite Guitz answer with the updated Content
- Go to Build Phases >Link Binary with Librairies > + > Add other
- Once in the file selection window do "CMD"+Shift+G (Go to folder) and type /usr/lib/
- From /user/lib you can add : libz.tbd and more...
- Compile and have fun