1

我有一个视图,其中有几条线在不同方向上绘制。我需要确定用户点击了哪条线路,然后做出相应的响应。

我脑子里有几个不同的想法,但我想要最好、最有效的方法来做到这一点......

最终,对我来说最有意义的是将每一行放在单独的视图中,并像单独的对象一样对待。如果我这样做了,我是否需要将视图定位并旋转到该线的确切位置,以便我知道何时点击它?如果不是,我会假设视图将相互重叠,我将无法确定点击了哪条线。

我希望我说得通。请让我知道实现这一目标的最佳方法。谢谢!

4

2 回答 2

5

对我来说,解决这个问题的最佳方法是将 UIView 创建为线条。如果它们只是带有纯色的线条,只需使用背景视图并相应地设置 CGRectFrame 。

为了在不处理位置等的情况下对触摸事件做出反应,请在 UIView 的 init 方法中创建一个 touchEvent,如下所示:

UITapGestureRecognizer *onTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(lineClicked)];
 [self addGestureRecognizer:onTap];   

在 UIView 类中声明函数:

-(void)lineClicked {
  //You can check some @property here to know what line was clicked for example
  if (self.color == [UIColor blackColor])
      //do something
  else
      //do another thing

  // You can use a custom protocol to tell the ViewController that a click happened
  (**) if ([self.delegate respondsToSelector:@selector(lineWasClicked:)]) {
         [self.delegate lineWasClicked:self];
     }
}

(**) 单击该行后,您可能希望将一些逻辑放入您的 viewController 中。解决此问题的最佳方法是在 CustomUIView.h 文件中声明 @protocol 并将 self 作为参数传递,以便 viewController 知道谁被点击:

@protocol LineClikedDelegate <NSObject>
@optional
- (void)lineWasClicked:(UIView *)line; //fired when clicking in the line
@end

最后,在 CustomUIView 中创建一个 @property 来指向委托:

@property id<DisclosureDelegate> delegate;

在 ViewController 中。当您将行创建为 UIViews 时,将委托设置为:

blackLine.delegate = self.

在 ViewController 中实现该方法- (void)lineWasClicked:(UIView *)line;并设置好。

于 2013-03-18T17:03:44.083 回答
1

根据要求,我将其添加为答案:

您可以使用图层而不是视图来显示线条。这在绘图中既有效又允许命中测试以确定哪条线已被点击。

这是几何计算的代码。

于 2013-03-18T21:31:53.113 回答