Search Results

10
votes

Looking for info on custom drawing of interface components (Cocoa)

It depends entirely on what you want to do. The "Show Raw Properties" button in Versions for instance is an NSButton subclass, because basically what we needed is standard button behavior w …
2
votes

How to give NSWindow a particular background color

Try calling the instance method setBackgroundColor: with a color on your window instance. What's in a name.. ;) …
0
votes

binding NSTextField to NSNumber

Like Ben mentioned, one way to do this is to attach an NSNumberFormatter to your textfield, which is pretty trivial to set up in interface builder and will likely Just Work™. If you don't l …