从Controller / Add UIImage访问UIView方法

时间:2010-12-05 18:35:15

标签: iphone objective-c

在ViewController中我想:

1)检测是否已选择UIView 2)在坐标处插入图像
我该怎么做呢?我目前正在使用:

CGPoint touchPoint = [touch locationInView:theViewIWant];
UIImage *myImage = [UIImage imageNamed:@"myimage.jpg"];
[myImage drawAtPoint:touchPoint];


但这不起作用。

1 个答案:

答案 0 :(得分:1)

执行所需操作的最简单方法是创建一个UIImageView,您可以在适当时插入或删除子视图。

但是,为什么UIButton已经提供此功能时会遇到麻烦呢?只需创建UIButtonTypeCustom类型的按钮,并仅为“突出显示”状态设置背景图像。