我很难理解为什么下面的代码不起作用,我想要实现的是一个图像显示在 NSView 的左上角,但什么都没有显示......
NSImage *map0 = [NSImage imageNamed:@"map0.png"];
NSRect rect = NSMakeRect(0, 0, 400, 400);
[map0 drawInRect:rect fromRect:NSZeroRect operation:NSCompositeSourceAtop fraction:1.0f];
[map drawRect:rect];
编辑:
map
是我想将图像绘制到的 NSView