Skip to content

Instantly share code, notes, and snippets.

@coolmenu
Forked from benjaminbojko/LinkedTextView.h
Last active August 29, 2015 12:05
Show Gist options
  • Save coolmenu/e3bdc0647428379fa8e8 to your computer and use it in GitHub Desktop.
Save coolmenu/e3bdc0647428379fa8e8 to your computer and use it in GitHub Desktop.
UITextView Subclass to avoid Long-Press Delays with embedded Links
//
// LinkedTextView.h
//
// Created by Benjamin Bojko on 10/22/14.
// Copyright (c) 2014 Benjamin Bojko. All rights reserved.
//
#import <UIKit/UIKit.h>
/**
* This is a subclass of @p UITextView that solves the problem of embedded link requiring a long-press
* before triggering. It uses a tap gesture recognizer to detect the attributes at the tap location and
* checks for embedded links. If a link is detected, it calls @p -[UITextViewDelegate textView:shouldInteractWithTextAttachment:inRange:]
* before calling @p -[UIApplication openURL:].
*/
@interface LinkedTextView : UITextView
@property (nonatomic, strong, readonly) UITapGestureRecognizer *linkTapGestureRecognizer;
@end
//
// LinkedTextView.m
//
// Created by Benjamin Bojko on 10/22/14.
// Copyright (c) 2014 Benjamin Bojko. All rights reserved.
//
#import "LinkedTextView.h"
@implementation LinkedTextView
- (instancetype)initWithFrame:(CGRect)frame textContainer:(NSTextContainer *)textContainer {
self = [super initWithFrame:frame textContainer:textContainer];
if (self) {
[self setupLinkedTextView];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
[self setupLinkedTextView];
}
return self;
}
- (void)awakeFromNib {
[super awakeFromNib];
[self setupLinkedTextView];
}
- (void)setupLinkedTextView {
_linkTapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleLinkTapGestureRecognizer:)];
_linkTapGestureRecognizer.cancelsTouchesInView = NO;
_linkTapGestureRecognizer.delaysTouchesBegan = NO;
_linkTapGestureRecognizer.delaysTouchesEnded = NO;
[self addGestureRecognizer:_linkTapGestureRecognizer];
}
/**
* Since UITextViews only open links on long-press, we want to check
* if a user pressed a link in the text view right away. We can do this
* by getting the text attributes at the tap location and checking for
* a link in the attributed string.
*/
- (void)handleLinkTapGestureRecognizer:(UITapGestureRecognizer *)tapRecognizer {
UITextView *textView = self;
CGPoint tapLocation = [tapRecognizer locationInView:textView];
// we need to get two positions since attributed links only apply to ranges with a length > 0
UITextPosition *textPosition1 = [textView closestPositionToPoint:tapLocation];
UITextPosition *textPosition2 = [textView positionFromPosition:textPosition1 offset:1];
// check if we're beyond the max length and go back by one
if (!textPosition2) {
textPosition1 = [textView positionFromPosition:textPosition1 offset:-1];
textPosition2 = [textView positionFromPosition:textPosition1 offset:1];
}
// abort if we still don't have a string that's long enough
if (!textPosition2) {
return;
}
// get the offset range of the character we tapped on
UITextRange *range = [textView textRangeFromPosition:textPosition1 toPosition:textPosition2];
NSInteger startOffset = [textView offsetFromPosition:textView.beginningOfDocument toPosition:range.start];
NSInteger endOffset = [textView offsetFromPosition:textView.beginningOfDocument toPosition:range.end];
NSRange offsetRange = NSMakeRange(startOffset, endOffset - startOffset);
if (offsetRange.location == NSNotFound || offsetRange.length == 0) {
return;
}
if (NSMaxRange(offsetRange) > textView.attributedText.length) {
return;
}
// now grab the link from the string
NSAttributedString *attributedSubstring = [textView.attributedText attributedSubstringFromRange:offsetRange];
NSString *link = [attributedSubstring attribute:NSLinkAttributeName atIndex:0 effectiveRange:nil];
if (!link) {
return;
}
NSURL *URL = [NSURL URLWithString:link];
if (self.delegate && [self.delegate respondsToSelector:@selector(textView:shouldInteractWithURL:inRange:)]) {
// abort if the delegate doesn't allow us to open this URL
if (![self.delegate textView:self shouldInteractWithURL:URL inRange:offsetRange]) {
return;
}
}
[[UIApplication sharedApplication] openURL:URL];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment