I've drawn onto an NSView which displays fine except for the fact it was flipped. I've set isFlipped to YES so it displays the correct way round.
I then overlay an image using drawInRect and [super drawRect:dirtyRect];
The problem is the overlayed image is now flipped incorrectly. How can I flip the main drawing but leave the overlayed image unflipped?
You might try using
NSImage'sdrawInRect:fromRect:operation:fraction:respectFlipped:hints:method rather thandrawInRect::Passing
NOforrespectFlipped:may give you what you're looking for.