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 触摸位置
基础教程推荐
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
