JTSCursorMovement 1.1.0

JTSCursorMovement 1.1.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Jared Sinclair.



  • By
  • Jared Sinclair

A drop-in utility for adding convenient swipe gesture cursor movements to a UITextView.

Moving the Cursor

JTSCursorMovement adds convenient gesture recognizers to a UITextView that make it easy to move the cursor forward or backwards. Use one finger to move by characters, two fingers by words, and three fingers by paragraphs. JTSCursorMovement works with all of the following:

  • plain text
  • attributed text
  • composed characters like emoji.
  • both right-to-left and left-to-right languages

Usage

Setting up JTSCursorMovement is easy: an import, a strong reference, and a one-line initializer.

#import "JTSCursorMovement.h"

@interface BLAViewController () 

@property (strong, nonatomic) JTSCursorMovement *cursorMovement;
@property (strong, nonatomic) UITextView *textView;

@end

[...]

- (void)viewDidLoad {
  [super viewDidLoad];

  self.cursorMovement = [[JTSCursorMovement alloc] initWithTextView:self.textView];

}

That's it.