tags:

views:

57

answers:

1

Hi, How can i set an image to a circular slider, which is an object of NSSlider. I have called setImage: method, but does not work out. What could be the alternative approach to do so.

+3  A: 

You'll need to subclass NSSliderCell and override its drawing. See Control and Cell Programming Topics for Cocoa.

Joshua Nozzi
Thanks for this reply. I am sure it will make out my requirement.
iSight