| | |
| | | // |
| | | // 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 |
| | |
| | | // 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 |
| | |
| | | */ |
| | | @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 |
| | | |
| | | ///------------------------------------------- |