How can I display the spinning NSProgressIndicator in a different color? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T06:03:57Z http://stackoverflow.com/feeds/question/456445 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/456445/how-can-i-display-the-spinning-nsprogressindicator-in-a-different-color 1 How can I display the spinning NSProgressIndicator in a different color? eJames 2009-01-19T03:25:31Z 2009-02-16T07:13:39Z <p>I am using a "spinner" NSProgressIndicator in my cocoa app:</p> <p><img src="http://img88.imageshack.us/img88/118/picture12cn4.png" alt="spinner image" /></p> <p>I would like to display it in a different color so that it will show up well on a dark background:</p> <p><img src="http://img398.imageshack.us/img398/1769/invertedspinnerck3.png" alt="inverted spinner image" /></p> <p>How would I go about doing this? My last resort would be to write my own custom NSView subclass that renders a custom animation, but I'm not even sure where to start on that front. Any help is appreciated.</p> http://stackoverflow.com/questions/456445/how-can-i-display-the-spinning-nsprogressindicator-in-a-different-color/456461#456461 -1 Answer by Martin Cote for How can I display the spinning NSProgressIndicator in a different color? Martin Cote 2009-01-19T03:34:43Z 2009-01-19T03:34:43Z <p>Try setting the "Opaque" flag to "On" for the indicator in Interface Builder.</p> http://stackoverflow.com/questions/456445/how-can-i-display-the-spinning-nsprogressindicator-in-a-different-color/456520#456520 0 Answer by Marc Charbonneau for How can I display the spinning NSProgressIndicator in a different color? Marc Charbonneau 2009-01-19T04:24:14Z 2009-01-19T04:24:14Z <p>I've seen some third party HUD-style control frameworks that include the bar style NSProgressIndicator, but unfortunately I don't remember ever seeing the spinner. If you can't find a way to get it to do what you want, <a href="http://www.ajaxload.info/" rel="nofollow">this page</a> can generate an animated gif that might be helpful for making your own.</p> http://stackoverflow.com/questions/456445/how-can-i-display-the-spinning-nsprogressindicator-in-a-different-color/469434#469434 4 Answer by Brian Webster for How can I display the spinning NSProgressIndicator in a different color? Brian Webster 2009-01-22T14:59:38Z 2009-01-22T14:59:38Z <p>Not sure if this would work correctly with NSProgressIndicator, but you might try using a Core Image filter to invert the display of the progress indicator view. You would have to make the view layer backed, and then add a <code>CIFilter</code> to its layer's filters. You may be able to do this all in the effects inspector in Interface Builder, otherwise you could also just do it in code.</p> http://stackoverflow.com/questions/456445/how-can-i-display-the-spinning-nsprogressindicator-in-a-different-color/469520#469520 1 Answer by Sean for How can I display the spinning NSProgressIndicator in a different color? Sean 2009-01-22T15:14:54Z 2009-01-22T15:14:54Z <p>I think you want a UIActivityIndicatorView:</p> <p><a href="http://stackoverflow.com/questions/283032/background-color-for-uiactivityindicatorview">http://stackoverflow.com/questions/283032/background-color-for-uiactivityindicatorview</a></p> <p><a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIActivityIndicatorView_Class/Reference/UIActivityIndicatorView.html" rel="nofollow">http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIActivityIndicatorView_Class/Reference/UIActivityIndicatorView.html</a></p> http://stackoverflow.com/questions/456445/how-can-i-display-the-spinning-nsprogressindicator-in-a-different-color/552464#552464 4 Answer by Kelan for How can I display the spinning NSProgressIndicator in a different color? Kelan 2009-02-16T07:13:39Z 2009-02-16T07:13:39Z <p>I actually have implemented clones of the spinning NSProgressIndicator that might suit your needs. They can be drawn at any size and in any color. One is a subclass of NSView, which can be used on OS X 10.4, and the other is a subclass of CALayer, which can be used in a CoreAnimation-based project. The code is on github (both the <a href="http://github.com/kelan/yrk-spinning-progress-indicator" rel="nofollow">NSView-based</a> version and the <a href="http://github.com/kelan/yrk-spinning-progress-indicator-layer" rel="nofollow">CoreAnimation-based</a> version), and there is a <a href="http://yeahrightkeller.com/2009/02/15/yrk-spinning-progress-indicators/" rel="nofollow">post with some screenshots</a> on my blog.</p>