GithubHelp home page GithubHelp logo

ruddfawcett / rfkeyboardtoolbar Goto Github PK

View Code? Open in Web Editor NEW
421.0 14.0 39.0 43 KB

[iOS] Add customized buttons and toolbars to your UITextInputs.

Home Page: https://www.cocoacontrols.com/controls/rfkeyboardtoolbar

License: MIT License

Objective-C 95.72% Ruby 4.28%

rfkeyboardtoolbar's Introduction

RFKeyboardToolbar
RFGravatarImageView Version License MIT reposs

This is a flexible UIView and UIButton subclass to add customized buttons and toolbars to your UITextFields/UITextViews. This project was inspired by the toolbar seen in iOctocat.

Installation

Installation with CocoaPods

CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like RFKeyboardToolbar in your projects.

Podfile

platform :ios, '7.0'
pod "RFKeyboardToolbar", "~> 1.3"

Installation without CocoaPods

Just drag the RFKeyboardToolbar folder into your project and import it.

#import 'RFKeyboardToolbar.h'

Use

RFKeyboardToolbar is pretty easy to use with your UITextFields or UITextViews. After you've imported RFKeyboardToolbar, you can add a toolbar to anything that has an inputAccessoryView.

I've commented on the initialization below, to help you get a better understanding of it.

// Create a new RFToolbarButton
RFToolbarButton *exampleButton = [RFToolbarButton buttonWithTitle:@"Example"];

// Add a button target to the exampleButton
[exampleButton addEventHandler:^{
    // Do anything in this block here
    [_textView insertText:@"You pressed a button!"];
} forControlEvents:UIControlEventTouchUpInside];

// Create an RFKeyboardToolbar, adding all of your buttons, and set it as your inputAcessoryView
_textView.inputAccessoryView = [RFKeyboardToolbar toolbarWithButtons:@[exampleButton]];

// Add the UITextView/UITextField
[self.view addSubview:_textView];

Hope you enjoy it! Please Fork and send Pull Requests!

Screenshots

RFMarkdownTextView

Contributors

License

RFKeyboardToolbar is available under the MIT license. See the LICENSE file for more info.

rfkeyboardtoolbar's People

Contributors

ruddfawcett avatar zydeco avatar uberjason avatar bryant1410 avatar

Stargazers

 avatar Melih Buyukbayram avatar iRyan avatar Hanhan avatar taroyuyu avatar  avatar HadiYaac avatar  avatar Jiyee Sheng avatar  avatar Antonio Rodrigues avatar Vegetable Tiger avatar  avatar jimmy8854 avatar 王翔 avatar Dave Carlson avatar 史江凯 avatar Derek Lucas avatar CodeDavy avatar Jason Jobe avatar Chang Luyang avatar Rob Fischer avatar Nikita Dobrov avatar Amit Tandel avatar Peter Hunt avatar Elan avatar cuixinkuan avatar Yaotian Feng avatar  avatar Kyle Howells avatar MohsinAli avatar iBetter avatar  avatar hyuni avatar  avatar Abdullah Al Mashmoum avatar  avatar Joe Ferrucci avatar Renaud Bouissière avatar UU avatar Micah Lanier avatar Chad Podoski avatar Terry Chou avatar  avatar Luis Castillo avatar Maxim Antonov avatar Melo Chale avatar 煎饼果子 avatar 陈胜 avatar samma avatar youliang avatar 大脸儿 avatar nick avatar SDWTJDW avatar phinrod avatar  avatar Pol Chen avatar  avatar Jernej Zorec avatar TopApp avatar  avatar Witold Skibniewski avatar Mubarak Almansoori avatar yidahis avatar  avatar Joe avatar  avatar HaviLee avatar dkv587 avatar WonJo avatar linqingmo avatar abel avatar  avatar Ally Klionsky avatar ETHAN avatar Alper Albayrak avatar M avatar  avatar  avatar  avatar  avatar  avatar Nuttapol Natepinyo avatar Songlin Yu avatar yaohao avatar  avatar LEE avatar Cliff avatar Leo Mehlig avatar Kim.Xu avatar HerbertLimitless avatar Jorge Andrade avatar Narcis avatar junhyuk Jin avatar leap avatar Jasper Ji avatar Tank avatar James Martin avatar AbnerPei avatar Chinsyo avatar

Watchers

arden avatar Brandon Butler avatar David Edwards avatar John avatar MohsinAli avatar Gustavo Rodriguez Baldera avatar  avatar  avatar 煎饼果子 avatar Mubarak Almansoori avatar Andy yan avatar Clint Madsen avatar  avatar  avatar

rfkeyboardtoolbar's Issues

move toolbar one button left

It's not an issue but a question.

is it possible to move toolbar one button left so the second one appear first.
if user swipe to right the first one appear.

Thank you.

Filter

Hi
is it possible to filter the toolbar button based on what use type in the field? (contains caracter)

Thanks

The user has to tap on the spacing between the buttons to scroll.

I have many buttons on my toolbar, when I try to scroll it, I found that I cannot scroll it unless I start my touch on the the little spaces between the buttons, otherwise the button that I touched will be pressed.

Can this somehow be handled? If the gesture is a pan, can the button not be triggered and instead the toolbar will scroll?

Use an image as the button?

I want to use a picture of a slanted "I" as a button on the toolbar, like this:

italic_000000_25

I can't find any constructors that accept an image, so i tried this:

let italicButton = RFToolbarButton(title: "", andEventHandler: { 
  // function
}, for: .touchUpInside)!
italicButton.setImage(UIImage(named: "italic"), for: .normal)
italicButton.setImage(UIImage(named: "ialic"), for: .highlighted)
textView.inputAccessoryView = RFKeyboardToolbar(buttons: [italicButton])

But the button did not appear on the toolbar.

Content Inset not working on left side

This may just be my issue, but it appears that the contentInset is not being set initially when adding a lot of buttons, or possible one button (untested).

See this demo screenshot:

You are able to scroll, and when scrolling back, you get the proper contentInset, however, not initially.

Small Issues

Hello and thanks for the excellent library.
There is a small issue in the example when in the viewdidload method
you are calling a non existing method:
this:

[RFKeyboardToolbar addToolbarTo:_textView withButtons:@[exampleButton]];

should be:

[RFKeyboardToolbar addToTextView:_textView withButtons:@[exampleButton]];

also on the RFExampleToolbarButton the

[[RFToolbarButton textInput] insertText:@"Example text."];

seems to be an unknown selector

maybe what you wanted to have there is:

 [[RFToolbarButton textView] insertText:@"Example text."];

thanks
Konstantinos

Make the buttons center-aligned

Is there a way to make the buttons center aligned? Right now, all the buttons are on the left (left aligned). People have to move their hands a lot to tap on them on a really wide screen.

Spacing of items in toolbar

Is it possible to hardcode the position of the items in the toolbar?

I'm thinking of something like this:

Dynamic_string_button............................................Bold...Italic...
The Dynamic_string_button is used as a sort of pseudo autocorrect based on a prepopulated list of words (appears based on what the user types). Bold and Italic button are used to modify the textView.

If the Dynamic_string_button doesn't match any keywords, then only Bold/Italic is shown, but they are still aligned to the right, so something like:

.....................................................Bold....Italic

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.