我有一个按钮来改变BOOL
showSquare
等于YES
这是按钮的代码
- (IBAction)Tap_Square:(id)sender {
[graphicsView setNeedsDisplay];
[graphicsView setShowSquare:YES];
}
这就是 if 语句所在的位置
if (showSquare) {
CGContextSetFillColorWithColor(context, white);
CGContextFillRect(context, CGRectMake(90, 90, 100, 100));
}
难道我做错了什么?
谢谢