I am trying to install alamofire into my project so I can upload images to my server, however I cannot seem to find the alamofire.framework
file. I have downloaded
You just need to change Framework Search Paths
to $(inherited)
.
P.S: Build Settings -> Search Paths -> Framework Search Paths
I solve my problem with this way (Only if your case are you have imported Alamofire in project but still not found)
I was also facing the same issue, and '$(inherited)' was missing in Target -> Build Settings ->Framework Search paths. Giving this fixed my issue.
Not stupid!
Once it's linked it doesn't necessarily exist on your device, this ensures it will.
You have to open yourprojectname.xcworkspace
You might get this error if you are opening your .xcworkproj instead of workspace
I removed the Alamofire
from pod file but I got the error again finally I figured out Alamofire
exist in Target -> Build setting -> Other Linker Flags
and remove from there and build successfully finally.