私はクオーツの基本を学ぼうとしていますが、なぜこれが機能しないのか理解できません.これは、ボタンが押されたときに赤い四角形を右に動かし、瞬間にバットを打つ必要があります.何もしません. "help"); ボタンが機能しているかどうかを調べようとしました - ありがとう
@implementation QuartzView
-(IBAction)moveRight:(id)sender{
NSLog(@"Help");
lR += 50;
}
- (id)initWithFrame:(NSRect)frameRect
{
self = [super initWithFrame:frameRect];
if (self) {
}
return self;
}
- (void)drawRect:(NSRect)dirtyRect
{
CGContextRef myContext = [[NSGraphicsContext // 1
currentContext] graphicsPort];
// Drawing code here.
CGContextSetRGBFillColor (myContext, 1, 0, 0, 1);// 3
CGContextFillRect (myContext, CGRectMake (lR, 0, 200, 100 ));
[self setNeedsDisplay:YES];
}
@end
ありがとう!