我对这里/ iOS来说是个新手。
我正在试着修复我的朋友正在建造的东西,并且已经离开了…在过去的两天里,我一直在尝试编译这篇文章。
希望能对我错过的东西有所了解。
我收到找不到'Mantle/Mantle.h‘文件。我已经安装了cocoapods,据我所知这就是Mantle。
我一直收到找不到文件的错误信息,但是我不确定是不是需要在某个地方安装或删除文件...?
我的podfile列出了mantle ..。我不确定我错过了什么。如果能提供一些帮助或指导,我们将非常感激。
发布于 2017-06-01 13:56:15
请确认您已在所有目标中添加了所有pod: my projects 'MyTestApp Dist'和'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
endhttps://stackoverflow.com/questions/38561172
复制相似问题