当我使用UIViews并更改背景颜色时,我的代码正常工作。现在我用省略号尝试它们并没有显示出来?这是代码:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
overlayView = [[[UIView alloc] initWithFrame:self.view.bounds] autorelease];
overlayView.backgroundColor = [UIColor colorWithWhite:255.0f alpha:1.0f];
[self.view addSubview:overlayView];
reda = 0;
bluea = 0;
greena = 255;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
touchPoint = [touch locationInView:self.view];
previousPoint = touchPoint;
}
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
touchPoint = [touch locationInView:self.view];
if (abs((previousPoint.x-touchPoint.x)) > 20) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Warning!" message:@"Too Fast!" delegate:self cancelButtonTitle:@"Okay." otherButtonTitles:nil];
[alertView show];
[alertView release];
}
CGContextRef contextRef = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(contextRef, reda/255.f, greena/255.f, bluea/255.f, 1.0f);
CGContextFillEllipseInRect(contextRef, CGRectMake(touchPoint.x, touchPoint.y, 20, 20));
[overlayView addSubview:contextRef];
if ((greena != 0) && (bluea == 0)) {
greena += -5;
reda += +5;
}
if ((reda != 0) && (greena == 0)) {
bluea += +5;
reda += -5;
}
if ((bluea != 0) && (reda == 0)) {
bluea += -5;
greena += +5;
}
}
答案 0 :(得分:2)
您正在UIGraphicsGetCurrentContext
中呼叫touchesMoved:withEvent:
。系统不会在touchesMoved:withEvent:
中为您创建图形上下文。系统仅在-[UIView drawRect:]
中为您创建图形上下文。
您需要了解Apple文档中的view drawing cycle和runtime interaction model for views。
您可以将绘图代码移动到drawRect:
,也可以创建自己的图形上下文(例如使用UIGraphicsBeginImageContextWithOptions
或CGBitmapContextCreate
),绘制到它,然后创建图像从上下文中将图像分配给view.layer.contents
。