RestKit 一大堆错误,我做错了吗?
RestKit loads of errors, am I doing it wrong?
我在我的新项目中使用 CocoaPods 安装了 RestKit,来试试看。
我确实遵循了 https://github.com/RestKit/RestKit 中的步骤。
我创建了以下 Podfile:
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
use_frameworks!
target 'MyProject' do
pod 'UIColor_Hex_Swift', '~> 2.1'
pod 'RestKit', '~> 0.24.0'
end
ios 与 link 的版本不同,后者使用 5.0。
我做到了pod install
。一切似乎都很好:
Updating local specs repositories
CocoaPods 1.0.0.beta.6 is available.
To update use: `sudo gem install cocoapods --pre`
[!] This is a test version we'd love you to try.
For more information see http://blog.cocoapods.org
and the CHANGELOG for this version http://git.io/BaH8pQ.
Analyzing dependencies
Downloading dependencies
Using AFNetworking (1.3.4)
Using ISO8601DateFormatterValueTransformer (0.6.1)
Using RKValueTransformers (1.1.3)
Using RestKit (0.24.1)
Using SOCKit (1.1)
Using TransitionKit (2.1.1)
Using UIColor_Hex_Swift (2.1)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There are 2 dependencies from the Podfile and 7 total pods installed.
我确实是从 open MyProject.xcworkspace
开始的。
但是,如果编译错误,我会加载:
我是不是漏掉了什么明显的东西?
我的 git 远远超过推荐:
git --version
git version 2.6.4 (Apple Git-63)
我认为你应该 'pod update',而不是 'install'。同时删除任何版本说明符。最新版本是0.26,btw.
我有 RestKit 0.26.0 可以与 Cocoa 一起工作pods 1.0.1,在一个使用 Xcode 7.3 的 Swift 项目中,我写了一个答案 here.
简短版本:
先清理旧的pods再清理
将 mcfedr's RestKit fork 与 AFNetwork 分支一起使用
pod 'AFNetworking', :git => 'https://github.com/mcfedr/AFNetworking.git', :branch => 'reachability'
pod 'RestKit', :git => 'https://github.com/mcfedr/RestKit.git', :branch => 'pods1'
在桥接中使用模块导入语法Header
@import RestKit;
现在应该可以了
我在我的新项目中使用 CocoaPods 安装了 RestKit,来试试看。
我确实遵循了 https://github.com/RestKit/RestKit 中的步骤。
我创建了以下 Podfile:
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
use_frameworks!
target 'MyProject' do
pod 'UIColor_Hex_Swift', '~> 2.1'
pod 'RestKit', '~> 0.24.0'
end
ios 与 link 的版本不同,后者使用 5.0。
我做到了pod install
。一切似乎都很好:
Updating local specs repositories
CocoaPods 1.0.0.beta.6 is available.
To update use: `sudo gem install cocoapods --pre`
[!] This is a test version we'd love you to try.
For more information see http://blog.cocoapods.org
and the CHANGELOG for this version http://git.io/BaH8pQ.
Analyzing dependencies
Downloading dependencies
Using AFNetworking (1.3.4)
Using ISO8601DateFormatterValueTransformer (0.6.1)
Using RKValueTransformers (1.1.3)
Using RestKit (0.24.1)
Using SOCKit (1.1)
Using TransitionKit (2.1.1)
Using UIColor_Hex_Swift (2.1)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There are 2 dependencies from the Podfile and 7 total pods installed.
我确实是从 open MyProject.xcworkspace
开始的。
但是,如果编译错误,我会加载:
我是不是漏掉了什么明显的东西?
我的 git 远远超过推荐:
git --version
git version 2.6.4 (Apple Git-63)
我认为你应该 'pod update',而不是 'install'。同时删除任何版本说明符。最新版本是0.26,btw.
我有 RestKit 0.26.0 可以与 Cocoa 一起工作pods 1.0.1,在一个使用 Xcode 7.3 的 Swift 项目中,我写了一个答案 here.
简短版本:
先清理旧的pods再清理
将 mcfedr's RestKit fork 与 AFNetwork 分支一起使用
pod 'AFNetworking', :git => 'https://github.com/mcfedr/AFNetworking.git', :branch => 'reachability'
pod 'RestKit', :git => 'https://github.com/mcfedr/RestKit.git', :branch => 'pods1'
在桥接中使用模块导入语法Header
@import RestKit;
现在应该可以了