2

我正在尝试使用NIAttributedLabel生成包含文本、链接并支持此行为的标签:

  • 按链接将调用- (void)attributedLabel:(NIAttributedLabel *)attributedLabel didSelectTextCheckingResult:(NSTextCheckingResult *)result atPoint:(CGPoint)point;- 这工作正常。
  • 按其他任何地方都会调用另一种方法 - 如果实施,上面的链接功能将丢失。

我不必使用NIAttributedLabel因此更好控制的建议也可以。

谢谢您的帮助

4

1 回答 1

0

我终于想通了;

  1. 向文件 NIAttributedLabel.m 添加函数

    -(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
         // never return self. always return the result of [super hitTest..].
         // this takes userInteraction state, enabled, alpha values etc. into account
         UIView *hitResult = [super hitTest:point withEvent:event];
    
         // don't check for links if the event was handled by one of the subviews
         if (hitResult != self) {
             return hitResult;
         }
    
         if (self.explicitLinkLocations || self.detectedlinkLocations) {
             BOOL didHitLink = ([self linkAtPoint:point] != nil);
             if (!didHitLink) {
                 // not catch the touch if it didn't hit a link
                 return nil;
             }
         }
         return hitResult;
    }
    
  2. 删除所有touchXXX中的所有[super touch XXXX]功能;

然后,它起作用了!

于 2013-07-04T15:31:55.310 回答