Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cocoa Check for Updates

What is the best way to add a "Check for updates..." functionality to a Cocoa application? I saw a little framework implementing this but I'm not sure that's the better way.

Should I implement it from scratch?

like image 484
gcstr Avatar asked Sep 23 '09 16:09

gcstr


People also ask

What is latest CocoaPods version?

1.11. 3 - March 16, 2022 (287 KB)

How do I install the latest version of CocoaPods?

Install pods Open the Podfile by selecting Tools | CocoaPods | Edit Podfile from the main menu. Read more about the Podfile syntax here. To install the pods, do one of the following: Place the caret at the code line where you add the pod, press ⌥ ⏎ , select Install, and press ⏎ .

How do I update a single POD file?

$ pod update When you run pod update SomePodName , CocoaPods will try to find an updated version of the pod SomePodName, without taking into account the version listed in Podfile. lock . It will update the pod to the latest version possible (as long as it matches the version restrictions in your Podfile).


2 Answers

Sparkle is widely accepted as the best way to do it.

like image 50
Jeff Kelley Avatar answered Oct 01 '22 13:10

Jeff Kelley


Sparkle is the most popular way to do this.

There is also the lesser known update-engine which Google is using and developing.

like image 31
Matthieu Cormier Avatar answered Sep 27 '22 13:09

Matthieu Cormier