问题
I am pretty new here/to iOS.
I am trying to fix up something my buddy was building and had left... I have been trying to compile this for the last 2 days.
Hoping to get some insight into what I am missing.
I am receiving 'Mantle/Mantle.h' file not found. I have installed cocoapods, from what I understand thats what Mantle is.
I keep receiving an error for file not found, however I am not sure is it something to install or drop a file somewhere...?
My podfile has mantle listed... I am not sure what am I missing. Some assistance or direction would be greatly appreciated.
回答1:
Please confirm you have added all pods in all targets:
There was two targets for my projects 'MyTestApp Dist'
and 'MyTestApp'
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
def myPods
pod 'Mantle'
end
target 'MyTestApp Dist' do
myPods
end
target 'MyTestApp' do
myPods
end
来源:https://stackoverflow.com/questions/38561172/mantle-h-file-not-found