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

Commit

Permalink
Bumped version and updated podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ruddfawcett committed Dec 26, 2014
1 parent febdf11 commit 72b6efc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This is a flexible UIView and UIButton subclass to add customized buttons and to

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

### Installation without CocoaPods
Expand All @@ -33,17 +33,17 @@ I've commented on the initialization below, to help you get a better understandi
```obj-c
// Create a new RFToolbarButton
RFToolbarButton *exampleButton = [RFToolbarButton buttonWithTitle:@"Example"];

// Add a button target to the exampleButton
[exampleButton addEventHandler:^{
// Add any action
[_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 toolbarViewWithButtons:@[exampleButton]];
_textView.inputAccessoryView = [RFKeyboardToolbar toolbarWithButtons:@[exampleButton]];

// Add the UITextView/UITextField
// Add the UITextView/UITextField
[self.view addSubview:_textView];
```
Expand All @@ -55,15 +55,15 @@ Hope you enjoy it! Please Fork and send Pull Requests!
![RFKeyboardToolbarDemo](http://i.imgur.com/LvD0GqC.png)
##Contributors
- [Rudd Fawcett (@ruddfawcett)] (https://github.com/ruddfawcett) - Creator (Version 1.0)
- [Rudd Fawcett (@ruddfawcett)] (https://github.com/ruddfawcett) - Creator
- [Brandon Butler (@Hackmodford)] (https://github.com/Hackmodford) - Heavy Contributor (Version 1.1)
- [Jesús A. Álvarez (@zydeco)] (https://github.com/zydeco) - Contributor
##License
The MIT License (MIT)
Copyright (c) 2013 Rudd Fawcett
Copyright (c) 2015 Rudd Fawcett
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
5 changes: 3 additions & 2 deletions RFKeyboardToolbar.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
Pod::Spec.new do |s|
s.name = 'RFKeyboardToolbar'
s.version = '1.2'
s.version = '1.3'
s.summary = 'A flexible UIView and UIButton subclass to add customized buttons and toolbars to your UITextFields/UITextViews.'
s.homepage = 'https://github.com/ruddfawcett/RFKeyboardToolbar'
s.license = 'MIT'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Rudd Fawcett' => '[email protected]' }
s.social_media_url = 'https://twitter.com/ruddfawcett'
s.platform = :ios, '7.0'
s.source = { :git => 'https://github.com/ruddfawcett/RFKeyboardToolbar.git', :tag => 'v1.2' }
s.source = { :git => 'https://github.com/ruddfawcett/RFKeyboardToolbar.git', :tag => 'v1.3' }
s.source_files = 'RFKeyboardToolbar/*'
s.requires_arc = true
end

0 comments on commit 72b6efc

Please sign in to comment.