作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的应用程序中的 iPhone 屏幕上拖动 UIImageView。
目前我设置的拖动功能很好,拖动图像确实可以在屏幕上移动它,问题是你不必拖动 ImageView 来移动它,你也可以在屏幕上的任何地方拖动它会移动图像。我是这个平台的新手,所以我无法真正思考如何解决这个问题。我当前拖动图像的代码是:
- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {
CGPoint pt = [[touches anyObject] locationInView:pig];
startLocation = pt;
}
- (void) touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event {
CGPoint pt = [[touches anyObject] locationInView:pig];
CGRect frame = [pig frame];
frame.origin.x += pt.x - startLocation.x;
frame.origin.y += pt.y - startLocation.y;
[pig setFrame: frame];
}
任何帮助表示赞赏。顺便说一句,pig 是 UIImageView。我还注意到,如果我将 ImageView “ pig ”的用户交互设置为启用,则图像将不再可拖动,但当它未设置为启用时,则可以。
最佳答案
您可以尝试子类化 UIImageView 并直接在其上实现 touchesBegan:
和 touchesMoved:
。然后在 InterfaceBuilder 中选择 UIImageView 的子类。
alt text http://img.skitch.com/20090728-xetretcfubtcj7ujh1yc8165wj.jpg
哦,是的,现在您需要再次设置用户交互...
关于iPhone SDK :Trouble Dragging a UIImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1190935/
我是一名优秀的程序员,十分优秀!