0
是否有可能在一個NSView
中繪製多個NSImages
?NSView中的多個NSImages?
在NSView
子類到目前爲止抽籤的是,像這樣做:
- (void)drawRect:(NSRect)dirtyRect
{
[image drawInRect:NSMakeRect(0.0f, 0.0f, 100.0f, 100.0f) fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0f];
}
//to change the current image
- (void)newImage:(NSImage *)image_
{
[image release];
image = [image_ retain];
[self setNeedsDisplay:YES];
}
但是,這是繪畫只是一個圖像。任何人都可以請幫忙嗎? 謝謝。
是的,它的工作原理!謝謝。沒想到這一點。 – Alterecho 2012-03-02 05:21:25