Skip to content

Commit

Permalink
Fixed Carthage build
Browse files Browse the repository at this point in the history
  • Loading branch information
hackiftekhar committed Jul 10, 2018
1 parent 4f59f13 commit 2714d42
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Demo/Objective_C_Demo/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>6.0.5</string>
<string>6.0.6</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
2 changes: 1 addition & 1 deletion Demo/Swift_Demo/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>6.0.5</string>
<string>6.0.6</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
4 changes: 2 additions & 2 deletions IQKeyboardManager.podspec.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "IQKeyboardManager",
"version": "6.0.5",
"version": "6.0.6",
"source": {
"git": "https://github.com/hackiftekhar/IQKeyboardManager.git",
"tag": "v6.0.5"
"tag": "v6.0.6"
},
"summary": "Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.",
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager",
Expand Down
Binary file not shown.
6 changes: 4 additions & 2 deletions IQKeyboardManager/Categories/IQNSArray+Sort.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

#import <Foundation/NSArray.h>

@class UIView;

/**
UIView.subviews sorting category.
*/
Expand All @@ -35,11 +37,11 @@
/**
Returns the array by sorting the UIView's by their tag property.
*/
@property (nonatomic, readonly, copy) NSArray * _Nonnull sortedArrayByTag;
@property (nonatomic, readonly, copy) NSArray<UIView*> * _Nonnull sortedArrayByTag;

/**
Returns the array by sorting the UIView's by their tag property.
*/
@property (nonatomic, readonly, copy) NSArray * _Nonnull sortedArrayByPosition;
@property (nonatomic, readonly, copy) NSArray<UIView*> * _Nonnull sortedArrayByPosition;

@end
5 changes: 3 additions & 2 deletions IQKeyboardManager/Categories/IQUIView+Hierarchy.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
// THE SOFTWARE.

#import <UIKit/UIView.h>
#import <UIKit/UIViewController.h>
#import "IQKeyboardManagerConstants.h"

@class UICollectionView, UIScrollView, UITableView, UISearchBar, NSArray;
Expand Down Expand Up @@ -62,12 +63,12 @@
/**
Returns all siblings of the receiver which canBecomeFirstResponder.
*/
@property (nonnull, nonatomic, readonly, copy) NSArray *responderSiblings;
@property (nonnull, nonatomic, readonly, copy) NSArray<UIView*> *responderSiblings;

/**
Returns all deep subViews of the receiver which canBecomeFirstResponder.
*/
@property (nonnull, nonatomic, readonly, copy) NSArray *deepResponderViews;
@property (nonnull, nonatomic, readonly, copy) NSArray<UIView*> *deepResponderViews;

///-------------------------
/// @name Special TextFields
Expand Down

0 comments on commit 2714d42

Please sign in to comment.