Joined September 2012
·
Posted to
Cocoa Pods
over 1 year
ago
From the Cocoapods site (and from own experience), try to use versions for the dependencies:
pod 'Objection', '0.9'
'Later on in the project you may want to freeze to a specific version of a Pod, in which case you can specify that version number.'
'Besides no version, or a specific one, it is also possible to use operators:'
> 0.1 Any version higher than 0.1
>= 0.1 Version 0.1 and any higher version
< 0.1 Any version lower than 0.1
<= 0.1 Version 0.1 and any lower version
~> 0.1.2 Version 0.1.2 and the versions up to 0.2, not including 0.2
Achievements
123 Karma
8,208 Total ProTip Views
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Bear
Have at least one original repo where Objective-C is the dominant language
KO Contender
Participated in 2012 Node Knockout
Charity
Fork and commit to someone's open source project in need
Thanks, very easy and illustrative. Can I ask you, if I need to execute a specific action to an entity (updating just one attribute) but without showing the user the entity we're trying to update but a couple of buttons, should I use PUT as the method for this action?