你好我是 Cocoa 编程的新手,我遇到了一个关于 NSRectFill 的问题。
窗口中有一个按钮,下面是我的 AppDelegate.m 文件:
@implementation LGAppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
[[NSColor redColor] set];
NSRectFill(NSMakeRect( 50,50,10,10));
}
- (IBAction)buttonPressed:(id)sender
{
[[NSColor greenColor] set];
NSRectFill(NSMakeRect( 60,60,10,10));
}
@end
我期望看到的是应用程序启动时显示一个矩形,单击按钮后显示另一个矩形。但是,只显示一个矩形,单击按钮后没有任何反应。请帮我解决这个问题。谢谢你。你的,Z