Mantle.h file not found

我与影子孤独终老i 提交于 2019-12-12 01:13:04

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!