123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- #import <CoreGraphics/CGBase.h>
- #import <Foundation/NSObject.h>
- #import <Foundation/NSSet.h>
- #import <UIKit/UITextInputTraits.h>
- @class UIFont, UIColor, UITapGestureRecognizer, UIView, UIImage;
- @class NSString;
- extern NSInteger const kNDAllInputContentViewTag;
- @interface PBKeyboardHelper : NSObject
- ///--------------------------
- /// @name UIKeyboard handling
- ///--------------------------
- /**
- Returns the default singleton instance. You are not allowed to create your own instances of this class.
- */
- + (nonnull instancetype)helper;
- /**
- Enable/disable managing distance between keyboard and textField. Default is YES(Enabled when class loads in `+(void)load` method).
- */
- @property(nonatomic, assign, getter = isEnabled) BOOL enable;
- /**
- To set keyboard distance from textField. can't be less than zero. Default is 20.0.
- */
- @property(nonatomic, assign) CGFloat keyboardDistanceFromTextField;
- /**
- Refreshes textField/textView position if any external changes is explicitly made by user.
- */
- - (void)reloadLayoutIfNeeded;
- /**
- Boolean to know if keyboard is showing.
- */
- @property(nonatomic, assign, readonly, getter = isKeyboardShowing) BOOL keyboardShowing;
- /**
- moved distance to the top used to maintain distance between keyboard and textField. Most of the time this will be a positive value.
- */
- @property(nonatomic, assign, readonly) CGFloat movedDistance;
- ///-------------------------
- /// @name IQToolbar handling
- ///-------------------------
- /**
- Automatic add IQToolbar functionality. Default is YES.
- */
- @property(nonatomic, assign, getter = isEnableAutoToolbar) BOOL enableAutoToolbar;
- /**
- If YES, then uses textField's tintColor property for IQToolbar, otherwise tint color is black. Default is NO.
- */
- @property(nonatomic, assign) BOOL shouldToolbarUsesTextFieldTintColor;
- /**
- Reload all toolbar buttons on the fly.
- */
- - (void)reloadInputViews;
- ///---------------------------------------
- /// @name UIKeyboard appearance overriding
- ///---------------------------------------
- /**
- Override the keyboardAppearance for all textField/textView. Default is NO.
- */
- @property(nonatomic, assign) BOOL overrideKeyboardAppearance;
- /**
- If overrideKeyboardAppearance is YES, then all the textField keyboardAppearance is set using this property.
- */
- @property(nonatomic, assign) UIKeyboardAppearance keyboardAppearance;
- ///-----------------------------------------------------------
- /// @name UITextField/UITextView Next/Previous/Resign handling
- ///-----------------------------------------------------------
- /**
- Resigns Keyboard on touching outside of UITextField/View. Default is YES.
- */
- @property(nonatomic, assign) BOOL shouldResignOnTouchOutside;
- /** TapGesture to resign keyboard on view's touch. It's a readonly property and exposed only for adding/removing dependencies if your added gesture does have collision with this one */
- @property(nonnull, nonatomic, strong, readonly) UITapGestureRecognizer *resignFirstResponderGesture;
- /**
- Resigns currently first responder field.
- */
- - (BOOL)resignFirstResponder;
- /**
- Returns YES if can navigate to previous responder textField/textView, otherwise NO.
- */
- @property (nonatomic, readonly) BOOL canGoPrevious;
- /**
- Returns YES if can navigate to next responder textField/textView, otherwise NO.
- */
- @property (nonatomic, readonly) BOOL canGoNext;
- /**
- Navigate to previous responder textField/textView.
- */
- - (BOOL)goPrevious;
- /**
- Navigate to next responder textField/textView.
- */
- - (BOOL)goNext;
- ///-----------------------
- /// @name UISound handling
- ///-----------------------
- /**
- If YES, then it plays inputClick sound on next/previous/done click. Default is YES.
- */
- @property(nonatomic, assign) BOOL shouldPlayInputClicks;
- ///---------------------------
- /// @name UIAnimation handling
- ///---------------------------
- /**
- If YES, then calls 'setNeedsLayout' and 'layoutIfNeeded' on any frame update of to viewController's view.
- */
- @property(nonatomic, assign) BOOL layoutIfNeededOnUpdate;
- ///---------------------------------------------
- /// @name Class Level enabling/disabling methods
- ///---------------------------------------------
- /**
- Disable distance handling within the scope of disabled distance handling viewControllers classes. Within this scope, 'enabled' property is ignored. Class should be kind of UIViewController. Default is [UITableViewController, UIAlertController, _UIAlertControllerTextFieldViewController].
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *disabledDistanceHandlingClasses;
- /**
- Enable distance handling within the scope of enabled distance handling viewControllers classes. Within this scope, 'enabled' property is ignored. Class should be kind of UIViewController. Default is [].
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *enabledDistanceHandlingClasses;
- /**
- Disable automatic toolbar creation within the scope of disabled toolbar viewControllers classes. Within this scope, 'enableAutoToolbar' property is ignored. Class should be kind of UIViewController. Default is [UIAlertController, _UIAlertControllerTextFieldViewController].
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *disabledToolbarClasses;
- /**
- Enable automatic toolbar creation within the scope of enabled toolbar viewControllers classes. Within this scope, 'enableAutoToolbar' property is ignored. Class should be kind of UIViewController. Default is [].
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *enabledToolbarClasses;
- /**
- Allowed subclasses of UIView to add all inner textField, this will allow to navigate between textField contains in different superview. Class should be kind of UIView. Default is [UITableView, UICollectionView, IQPreviousNextView].
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *toolbarPreviousNextAllowedClasses;
- /**
- Disabled classes to ignore 'shouldResignOnTouchOutside' property, Class should be kind of UIViewController. Default is [UIAlertController, UIAlertControllerTextFieldViewController]
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *disabledTouchResignedClasses;
- /**
- Enabled classes to forcefully enable 'shouldResignOnTouchOutsite' property. Class should be kind of UIViewController. Default is [].
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *enabledTouchResignedClasses;
- /**
- if shouldResignOnTouchOutside is enabled then you can customise the behaviour to not recognise gesture touches on some specific view subclasses. Class should be kind of UIView. Default is [UIControl, UINavigationBar]
- */
- @property(nonatomic, strong, nonnull, readonly) NSMutableSet<Class> *touchResignedGestureIgnoreClasses;
- ///-------------------------------------------
- /// @name Third Party Library support
- /// Add TextField/TextView Notifications customised NSNotifications. For example while using YYTextView https://github.com/ibireme/YYText
- ///-------------------------------------------
- /**
- Add/Remove customised Notification for third party customised TextField/TextView. Please be aware that the NSNotification object must be idential to UITextField/UITextView NSNotification objects and customised TextField/TextView support must be idential to UITextField/UITextView.
- @param didBeginEditingNotificationName This should be identical to UITextViewTextDidBeginEditingNotification
- @param didEndEditingNotificationName This should be identical to UITextViewTextDidEndEditingNotification
- */
- -(void)registerTextFieldViewClass:(nonnull Class)aClass
- didBeginEditingNotificationName:(nonnull NSString *)didBeginEditingNotificationName
- didEndEditingNotificationName:(nonnull NSString *)didEndEditingNotificationName;
- -(void)unregisterTextFieldViewClass:(nonnull Class)aClass
- didBeginEditingNotificationName:(nonnull NSString *)didBeginEditingNotificationName
- didEndEditingNotificationName:(nonnull NSString *)didEndEditingNotificationName;
- ///----------------------------------------
- /// @name Debugging & Developer options
- ///----------------------------------------
- @property(nonatomic, assign) BOOL enableDebugging;
- /**
- @warning Use these methods to completely enable/disable notifications registered by library internally. Please keep in mind that library is totally dependent on NSNotification of UITextField, UITextField, Keyboard etc. If you do unregisterAllNotifications then library will not work at all. You should only use below methods if you want to completedly disable all library functions. You should use below methods at your own risk.
- */
- -(void)registerAllNotifications;
- -(void)unregisterAllNotifications;
- ///----------------------------------------
- /// @name Must not be used for subclassing.
- ///----------------------------------------
- /**
- Unavailable. Please use sharedManager method
- */
- -(nonnull instancetype)init NS_UNAVAILABLE;
- /**
- Unavailable. Please use sharedManager method
- */
- + (nonnull instancetype)new NS_UNAVAILABLE;
- @end
|