SimpleAuth pod未正确安装

时间:2015-11-05 22:05:02

标签: ios objective-c swift cocoapods

我在我的Xcode项目中使用了几个pod,除了SimpleAuth

之外,它们都能很好地工作

这是我的podfile中的代码:

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, ‘8.0’
pod 'SWRevealViewController', '~> 2.3'
pod 'SAMCache'

source 'https://github.com/calebd/SimpleAuth'
use_frameworks!
pod 'SimpleAuth/Instagram'

然后,我使用我的终端定位我的项目文件夹来安装我的pod。正如您所看到的,当我的项目中创建的“SimpleAuth”文件夹应该包含它需要运行的所有objective-c类时,它是空的:

enter image description here

更多经验的任何帮助Objective-c编码员非常感谢。

1 个答案:

答案 0 :(得分:0)

你为什么用两种方式。而是使用简单的

podflie

use_frameworks!
platform :ios, ‘8.0’
pod 'SWRevealViewController', '~> 2.3'
pod 'SAMCache'
pod 'SimpleAuth/Instagram'

无需提及源路径。 Cocoapods会自动完成。 它没有被使用,因为如果它将来某个时候发生变化,那么你就会遇到问题。