I am working on drawing custom buttons/textfields with NSDrawNinePartImage. I slice up an image into nine parts in code and draw it into a rect with NSDrawNinePartImage.
Unfortunately I am getting some gaps in the drawing pattern. I thought it had something to do with my slicing code, but I saved them out as images from where I slice them, and they all look good (I even put them together and they looked good). Some of the cases where I use it to work just fine though despite some using the same images.
I am pretty confident that it comes down to the actual drawing.
Do you know of any NSGraphicsContext or other settings that would affect it or something else that may be causing this?
With gaps

Without gaps

-[NSView convertRect:toView:nil]on the frame you pass toNSDrawNinePartImageand print out the result. If there are any non-integral values, then that might be the cause of your problem. Use something like-[NSView centerScanRect:]to ensure the rect is only pixel boundaries. – kperryua Jun 6 '11 at 15:42