I am trying to run https://github.com/kwkhaw/quick-start-ios-swift this project. But facing this error while compiling the code.
ATLAddressBarViewController.h not found in Atlas.h
Asked Answered
I ran into the same issue as yourself after I had upgraded to Xcode 7. Go to Target -> Search Paths -> User Header Search Paths
and make sure you are not missing Pods/** - recursive
. This fixed the problem for me.
Can someone post the text from their Header Search Paths? –
Dorsal
© 2022 - 2024 — McMap. All rights reserved.
$(PODS_ROOT)
and set it to recursive. Add it to the app target and it will automatically figure out the correct path. – Clearance