在用户点击位置绘制UIImageView

时间:2010-06-04 23:04:05

标签: iphone uiimageview touch

这是我第二次问这个问题。每次用户点击屏幕时,如何在用户点击位置绘制图像?

你能不能留下一个示例项目或代码,因为我是iPhone编程新手并且很难理解某些方法等。 谢谢, 泰特

1 个答案:

答案 0 :(得分:2)

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

    UITouch * touch = [touches anyObject];

    UIImageView * anImageView = [[UIImageView alloc] initWithImage:anImage];
    [anImageView setCenter:[touch locationInView:self.view]];
    [self.view addSubview:anImageView];
    [anImageView release];
}

将来,请阅读文档或使用Google。