我刚刚开始学习如何在我的xcode项目中使用cocoapods。我在我的电脑上安装了1.1.1版。在教程之后,我完成了与其他人完全相同的事情,但没有得到正确的答案。
在我的项目中获取podfile后,这就是我所做的。
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'podTester' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for podTester
pod 'SDWebImage'
target 'podTesterTests' do
inherit! :search_paths
# Pods for testing
end
target 'podTesterUITests' do
inherit! :search_paths
# Pods for testing
end
end
在我的终端中输入pod install后,它给了我这样的东西。 (与教程中的不同)
之后,我进入我的新swift文件(白色文件),我的项目搞砸了,目录现在看起来像这样。
我的项目几乎消失了,只剩下pod文件。
我只是想知道出了什么问题以及如何解决它。非常感谢!