RestKit加载了错误,我做错了吗?

时间:2016-04-03 10:59:32

标签: ios objective-c 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版本的不同之处在于它们使用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启动了它。

但是,如果编译错误,我会得到加载: enter image description here

我是否错过了一些明显的东西?

我的git已被推荐:

git --version
git version 2.6.4 (Apple Git-63)

2 个答案:

答案 0 :(得分:0)

我认为你应该更新' pod更新'而不是'安装'。同时删除任何版本说明符。最新版本是0.26,顺便说一句。

答案 1 :(得分:0)

我已经使用RestKit 0.26.0与Cocoapods 1.0.1一起使用,在使用Xcode 7.3的Swift项目中,我写了一个答案here

简短版本:

在所有内容之前清理旧吊舱

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'

在桥接标题

中使用模块导入语法
@import RestKit;

现在它应该工作