All Projects → inamiy → YISwipeShiftCaret

inamiy / YISwipeShiftCaret

Licence: other
Swipe-to-shift text input caret for iOS (no private APIs)

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

YISwipeShiftCaret 1.0.0

Swipe-to-shift text input caret for iOS (no private APIs)

ScreenShot1

Above screenshot is from WordBook App using YIPopupTextView.

This project is based on this commit.

How to use

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // add swipe-shift-caret gestures to all of UITextField/UITextView
    [YISwipeShiftCaret install];
    
    //
    // or, you can implement gestures manually as follows, adding to non-textInput (wider parent) view:
    //
    // YISwipeShiftCaretGestureRecognizer* gesture = [[YISwipeShiftCaretGestureRecognizer alloc] initWithTextInput:self.textField];
    // [self.window addGestureRecognizer:gesture];
    
    return YES;
}

Acknowledgement

Main idea of this project is from r-plus/SwipeShiftCaret.

License

YISwipeShiftCaret is available under the Beerware license.

If we meet some day, and you think this stuff is worth it, you can buy me a beer in return.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].