Greetings all,
I have a puzzling problem. I have a pointer to a vanilla NSView that was initialized in a nib. I message the nsview with
[myNSView setFrame:NSMakeRect(0,0,816,1056)];
but when I step through the debugger, myNSView has a frame of {{0,0}, {801, 1041}}. The dimensions of the rectangle are 15 less than I've specified! This happens consistently. If I specify two [setFrames] in a row, everything works, but that's of course not the answer.
To summarize, does anyone know why setFrame would fail?
Thanks