UIButton TouchUpInside Touch Location(UIButton TouchUpInside 触摸位置)
问题描述
所以我有一个大的UIButton
,它是一个UIButtonTypeCustom
,按钮目标是为UIControlEventTouchUpInside
调用的.我的问题是如何确定触摸发生在 UIButton
的哪个位置.我想要这个信息,这样我就可以从触摸位置显示一个弹出窗口.这是我尝试过的:
So I have a large UIButton
, it is a UIButtonTypeCustom
, and the button target is called for UIControlEventTouchUpInside
. My question is how can I determine where in the UIButton
the touch occured. I want this info so I can display a popup from the touch location. Here is what I've tried:
UITouch *theTouch = [touches anyObject];
CGPoint where = [theTouch locationInView:self];
NSLog(@" touch at (%3.2f, %3.2f)", where.x, where.y);
和其他各种迭代.按钮的目标方法通过 sender
从中获取信息:
and various other iterations. The button's target method get info from it via the sender
:
UIButton *button = sender;
那么有什么方法可以使用类似:button.touchUpLocation
?
So is there any way I could use something like: button.touchUpLocation
?
我在网上查了一下,没有找到类似的东西,所以提前谢谢.
I looked online and couldn't find anything similar to this so thanks in advance.
推荐答案
UITouch *theTouch = [touches anyObject];
CGPoint where = [theTouch locationInView:self];
NSLog(@" touch at (%3.2f, %3.2f)", where.x, where.y);
这是正确的想法,只是这段代码可能在视图控制器的动作中,对吧?如果是这样,那么 self
指的是视图控制器而不是按钮.您应该将指向按钮的指针传递到 -locationInView:
.
That's the right idea, except that this code is probably inside an action in your view controller, right? If so, then self
refers to the view controller and not the button. You should be passing a pointer to the button into -locationInView:
.
这是您可以在视图控制器中尝试的经过测试的操作:
Here's a tested action that you can try in your view controller:
- (IBAction)buttonPressed:(id)sender forEvent:(UIEvent*)event
{
UIView *button = (UIView *)sender;
UITouch *touch = [[event touchesForView:button] anyObject];
CGPoint location = [touch locationInView:button];
NSLog(@"Location in button: %f, %f", location.x, location.y);
}
这篇关于UIButton TouchUpInside 触摸位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIButton TouchUpInside 触摸位置


基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01