1

I'm using the Sparkle framework in Xcode 5. When I build I see the following warning. Is there a way to disable (quiet) this warning without changing the fact that Sparkle uses GC?

Thanks!

enter image description here

RobertJoseph
  • 7,968
  • 12
  • 68
  • 113

3 Answers3

3

Use up-to-date fork of Sparkle that is maintained for XCode 5.

Kornel
  • 97,764
  • 37
  • 219
  • 309
2

I think is is maybe what you're after, in the Sparkle Xcode project:

  1. Select the project itself to show the various target settings etc
  2. Select Sparkle under PROJECT
  3. Select the Info group (from the "tab bar" along the top of the pane
  4. Under Configurations delete the third one, release dual mode

This removes the configuration which supports Sparkle dual-mode with GC and should remove the warnings. The standard Release configuration does not use GC.

HTH

CRD
  • 52,522
  • 5
  • 70
  • 86
0

The latest development version of Sparkle now uses Automatic Reference Counting and will likely be available in Sparkle version 1.8.

Jake Petroules
  • 23,472
  • 35
  • 144
  • 225