Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit 72b6efc

Browse files
committed
Bumped version and updated podspec
1 parent febdf11 commit 72b6efc

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is a flexible UIView and UIButton subclass to add customized buttons and to
1313

1414
```ruby
1515
platform :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
3535
RFToolbarButton *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
![RFKeyboardToolbarDemo](http://i.imgur.com/LvD0GqC.png)
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
6464
The MIT License (MIT)
6565
66-
Copyright (c) 2013 Rudd Fawcett
66+
Copyright (c) 2015 Rudd Fawcett
6767
6868
Permission is hereby granted, free of charge, to any person obtaining a copy of
6969
this software and associated documentation files (the "Software"), to deal in

RFKeyboardToolbar.podspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = 'RFKeyboardToolbar'
3-
s.version = '1.2'
3+
s.version = '1.3'
44
s.summary = 'A flexible UIView and UIButton subclass to add customized buttons and toolbars to your UITextFields/UITextViews.'
55
s.homepage = 'https://github.com/ruddfawcett/RFKeyboardToolbar'
66
s.license = 'MIT'
77
s.license = { :type => 'MIT', :file => 'LICENSE' }
88
s.author = { 'Rudd Fawcett' => '[email protected]' }
9+
s.social_media_url = 'https://twitter.com/ruddfawcett'
910
s.platform = :ios, '7.0'
10-
s.source = { :git => 'https://github.com/ruddfawcett/RFKeyboardToolbar.git', :tag => 'v1.2' }
11+
s.source = { :git => 'https://github.com/ruddfawcett/RFKeyboardToolbar.git', :tag => 'v1.3' }
1112
s.source_files = 'RFKeyboardToolbar/*'
1213
s.requires_arc = true
1314
end

0 commit comments

Comments
 (0)