iOS 相对路径设置以及cocoapos常见错误

1.设置相对路径##

要想设置相对路径,必须要查看绝对路径

2.如设置pch的相对路径##

点击pch文件,直接拖到工程中就会有绝对路径生成,这样就得到绝对路径了,从工程的路径开始,前面使用$(SRCROOT)代替,即为pch相对路径

3.设置相对路径##

在Xcode的target配置中,在Build Setting中找到Prefix Header,将修改后得到的相对路径添加到其中,并将Precompile Prefix Header的值设置为YES。这样pch相对路径就设置成功了

4.cocopos使用常见错误##


1.Could not automatically select an Xcode project. Specify one in your Podfile like so:xcodeproj 'path/to/Project.xcodeproj'
解决方法:这个就是在Podfile文件里指定下工程目录就可以了
2.[!] Invalid Podfile file: syntax error, unexpected end-of-input, expecting keyword_end.
解决方法:在Poddfile的末尾加end


你可能感兴趣的:(iOS 相对路径设置以及cocoapos常见错误)