@@ -13,7 +13,7 @@ This is a flexible UIView and UIButton subclass to add customized buttons and to
1313
1414``` ruby
1515platform :ios , ' 7.0'
16- pod " RFKeyboardToolbar" , " ~> 1.2 "
16+ pod " RFKeyboardToolbar" , " ~> 1.3 "
1717```
1818
1919### Installation without CocoaPods
@@ -33,17 +33,17 @@ I've commented on the initialization below, to help you get a better understandi
3333``` obj-c
3434// Create a new RFToolbarButton
3535RFToolbarButton *exampleButton = [RFToolbarButton buttonWithTitle: @"Example"] ;
36-
36+
3737// Add a button target to the exampleButton
3838[ exampleButton addEventHandler:^{
3939 // Add any action
4040 [ _ textView insertText:@"You pressed a button!"] ;
4141} forControlEvents: UIControlEventTouchUpInside ] ;
42-
42+
4343// Create an RFKeyboardToolbar, adding all of your buttons, and set it as your inputAcessoryView
44- _ textView.inputAccessoryView = [ RFKeyboardToolbar toolbarViewWithButtons :@[ exampleButton]] ;
44+ _ textView.inputAccessoryView = [ RFKeyboardToolbar toolbarWithButtons :@[ exampleButton]] ;
4545
46- // Add the UITextView/UITextField
46+ // Add the UITextView/UITextField
4747[ self.view addSubview:_ textView] ;
4848```
4949
@@ -55,15 +55,15 @@ Hope you enjoy it! Please Fork and send Pull Requests!
5555
5656
5757##Contributors
58- - [Rudd Fawcett (@ruddfawcett)] (https://github.com/ruddfawcett) - Creator (Version 1.0)
58+ - [Rudd Fawcett (@ruddfawcett)] (https://github.com/ruddfawcett) - Creator
5959- [Brandon Butler (@Hackmodford)] (https://github.com/Hackmodford) - Heavy Contributor (Version 1.1)
6060- [Jesús A. Álvarez (@zydeco)] (https://github.com/zydeco) - Contributor
6161
6262##License
6363
6464The MIT License (MIT)
6565
66- Copyright (c) 2013 Rudd Fawcett
66+ Copyright (c) 2015 Rudd Fawcett
6767
6868Permission is hereby granted, free of charge, to any person obtaining a copy of
6969this software and associated documentation files (the "Software"), to deal in
0 commit comments