无论UIButton touch上的滚动如何,都可获得粉红色斑点的位置

时间:2013-10-13 16:39:54

标签: ios objective-c uibutton cgpoint

enter image description here

我的滚动视图中有一个按钮,我想找到x,y位置(在图像中标记为粉红点),并且每当我点击按钮的任何部分时都将其分配给我的变量而不管滚动。 下面的代码会给我一个触摸位置而不管滚动,类似是否有通用代码来获取图像中粉红点的位置而不管滚动?

    NSSet *touches = [event touchesForView:sender];
    UITouch *touch = [touches anyObject];
    CGPoint location = [touch locationInView:self.view];
    CGPoint locationX = [touch locationInView:sender];

     NSLog(@"Location: %f, %f", location.x, location.y);

0 个答案:

没有答案