admin
2022-01-17 b63ed504f6d1e652d9fbd67c1490e7821b159c75
Pods/IQKeyboardManager/IQKeyBoardManager/Categories/IQUITextFieldView+Additions.h
@@ -1,7 +1,7 @@
//
//  IQUITextFieldView+Additions.h
// IQUITextFieldView+Additions.h
// https://github.com/hackiftekhar/IQKeyboardManager
// Copyright (c) 2013-15 Iftekhar Qurashi.
// Copyright (c) 2013-16 Iftekhar Qurashi.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
@@ -21,7 +21,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <UIKit/UIView.h>
#import "IQKeyboardManagerConstants.h"
/**
 UIView category for managing UITextField/UITextView
@@ -34,6 +35,21 @@
 */
@property(nonatomic, assign) CGFloat keyboardDistanceFromTextField;
/**
 If shouldIgnoreSwitchingByNextPrevious is YES then library will ignore this textField/textView while moving to other textField/textView using keyboard toolbar next previous buttons. Default is NO
 */
@property(nonatomic, assign) BOOL ignoreSwitchingByNextPrevious;
///**
// Override Enable/disable managing distance between keyboard and textField behaviour for this particular textField.
// */
@property(nonatomic, assign) IQEnableMode enableMode;
/**
 Override resigns Keyboard on touching outside of UITextField/View behaviour for this particular textField.
 */
@property(nonatomic, assign) IQEnableMode shouldResignOnTouchOutsideMode;
@end
///-------------------------------------------