본문 바로가기

개발관련/Mac

NSView 배경색 설정


- (void) drawRect:(NSRect)dirtyRect
{
    [[NSColor whiteColor] setFill];
    NSRectFill(dirtyRect);
}