YYfim
YYfim

Reputation: 1412

RestKit installation warnings

I've started learning RestKit and installed it with cocoapods just like the GitHub installation says, the problem come after i've completed the process i got 12 warnings from the framework

enter image description here

Any advice?

Thanks

Upvotes: 2

Views: 186

Answers (2)

JZ.
JZ.

Reputation: 21897

Tracking :head as of 4/19 solved this issue.

platform :ios, '7.1'
pod 'RestKit', :head

Upvotes: 0

Wain
Wain

Reputation: 119041

You're using an old version. Go to github, find the latest version number and upgrade to that. At the time of writing that is version 0.22.0, which is still months old so will still have some build warnings, but you don't really need to worry about them (Xcode is being more specific about reporting is all, that doesn't mean things shouldn't be fixed, and they are being fixed, but most aren't an issue for you).

If you really don't like the warnings, switching to the HEAD of the development branch will reduce most issues as it has the most up-to-date code.

Upvotes: 2

Related Questions