-1

我正在创建一个应用程序,允许用户在其中触摸线或路径上方。我想做一些事情,比如用户应该能够点击大约 20 像素的线。我用谷歌搜索了很多,但一无所获。

4

1 回答 1

1

以下是我的一个程序中的一段代码:在这里我做了类似的事情。用户在屏幕上点击的任何位置都会出现图像。我已将屏幕限制在某些区域,只有在哪里可以注册点击。希望这对你有帮助:!!

-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {


  UITouch *touch = [[event allTouches] anyObject];
     CGPoint location = [touch locationInView:touch.view];
    image=[UIImage imageNamed:@"anyImage.gif"];
    newView = [[UIImageView alloc]initWithImage:image];
    if (location.y<117 || location.y>354)
    {
        newView.frame = CGRectMake (location.x, location.y,87,70);
        newView.center=location;
        [self addSubview:newView];

    }

    if (location.y<90)
    {
        if(location.y>85)
        {
            if (location.x>133 || location.x<183)
            {

                [self shakeA]; //A method shakeA is called

            }
        }
    }
    else if (location.y<360)
    {
        if (location.y>354)
        {
            if (location.x>133 || location.x<183)
            {       
                [self shakeB]; // Method shakeB called

            }
        }
    }
}
于 2012-09-24T04:54:41.957 回答