iOS 键盘自适应(IQKeyboardManager)使用小结

IQKeyboardManager Github地址

经常在开发一个应用程序,我们遇到了一个问题,iPhone的键盘上滑覆盖的UITextField / UITextViewIQKeyboardManager可以防止键盘滑动问题和覆盖UITextField / UITextView无需你输入任何代码,不需要额外的设置要求。使用IQKeyboardManager你只需要添加源文件到你的项目。

主要特点

1)无代码 
2)自动工作 
3)没有更多的UIScrollView
4)没有更多的子类 
5)没有更多的手动工作 
6)没有更多#imports

截图


IQKeyboardManager 支持 CocoaPods

pod ‘IQKeyboardManager’

管理

UINavigationBar

如果你不使用storyboardxib创造你的视图。你需要重写-(void)UIViewController loadview方法,需要设置一个UIScrollView实例self.view

-(void)loadView 

  UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 
 self.view = scrollView;
}

为某一个ViewController禁用IQKeyboardManager

如果你想在某个 viewcontroller 禁用 IQKeyboardManager 你应该在 ViewDidAppear 中禁用IQKeyboardManager,而在ViewWillDisappear启用它 
代码:

 #import "IQKeyboardManager.h" @implementationExampleViewController    BOOL _wasKeyboardManagerEnabled; }

-(void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    _wasKeyboardManagerEnabled = [[IQKeyboardManager sharedManager] isEnabled];
    [[IQKeyboardManager sharedManager] setEnable:NO];
}

-(void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    [[IQKeyboardManager sharedManager] setEnable:_wasKeyboardManagerEnabled];   @end

键盘的回车键处理

1)创建一个实例变量实例化IQKeyboardReturnKeyHandler 在 ViewController 的 viewDidLoad 中

代码:

	@implementationViewController  {  IQKeyboardReturnKeyHandler *returnKeyHandler;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    returnKeyHandler = [[IQKeyboardReturnKeyHandler alloc] initWithViewController:self];
}

改变键盘上的返回键。

设置实例变量为零的dealloc方法
-(void)dealloc {
    returnKeyHandler = nil;
}

UIToolbar(IQToolbar)

1)如果你不想添加一个特定的自动工具栏在键盘上方,应该添加一个类作为它的工具栏
textField.inputAccessoryView = [[UIView alloc] init];
2)如果你需要自己控制上/下/完成按钮,那么应该使用UIView类的方法,创建你的文本框工具栏。

代码:

-(void)viewDidLoad
{  

	 [super viewDidLoad];      //Adding done button for textField1   [textField1 addDoneOnKeyboardWithTarget:self action:@selector(doneAction:)];      //Adding previous/next/done button for textField2   [textField2 addPreviousNextDoneOnKeyboardWithTarget:self previousAction:@selector(previousAction:) nextAction:@selector(nextAction:) doneAction:@selector(doneAction:)];     //Adding cancel/done button for textField3   [textField3 addCancelDoneOnKeyboardWithTarget:self cancelAction:@selector(cancelAction:) doneAction:@selector(doneAction:)];    /*! previousAction. */  -(void)previousAction:(id)button   //previousAction     /*! nextAction. */  -(void)nextAction:(id)button   //nextAction     /*! doneAction. */  -(void)doneAction:(UIBarButtonItem*)barButton   //doneAction     /*! cancelAction. */  -(void)cancelAction:(UIBarButtonItem*)barButton  //cancelAction   }

功能和使用

UIKeyboard 处理
+(instancetype)sharedManager : Returns the default singleton instance.

@property BOOL enable : Use this to enable/disable managing distance between keyboard & textField/textView).

@property CGFloat keyboardDistanceFromTextField : Set Distance between keyboard & textField. Can‘t be less than zero. [email protected] BOOL preventShowingBottomBlankSpace : Prevent to show bottom blanck area when keyboard slide up the view.
IQToolbar处理
@property BOOL enableAutoToolbar : Enable autoToolbar behaviour. If It is set to NO. You have to manually create UIToolbar for keyboard. Defaultis YES.

@property IQAutoToolbarManageBehaviour toolbarManageBehaviour : Setting toolbar behaviour to IQAutoToolbarBySubviews to manage previous/next according to UITextField‘s hierarchy in it‘s SuperView. Set it to IQAutoToolbarByTag to manage previous/next according to UITextField‘s tag propertyin increasing order. Defaultis IQAutoToolbarBySubviews.

@property BOOL shouldToolbarUsesTextFieldTintColor : If YES, then uses textField‘s tintColor propertyfor IQToolbar, otherwise tintColor is black. Defaultis NO. 

@property BOOL shouldShowTextFieldPlaceholder : If YES, then it add the textField‘s placeholder text on IQToolbar. Defaultis YES. 

@property UIFont *placeholderFont : placeholder Font. Defaultis nil. Defaultis YES.
UITextView处理
@property BOOL canAdjustTextView : Giving permission to modify TextView‘s frame. Adjust textView‘s frame when it is too big in height. Defaultis NO.

@property BOOL shouldFixTextViewClip : Adjust textView‘s contentInset to fix fix for iOS 7.0.x -(#Stackoverflow). Defaultis YES.
UIKeyboard 外观覆盖
@property BOOL overrideKeyboardAppearance : Override the keyboardAppearance for all textField/textView. Defaultis NO.

@property UIKeyboardAppearance keyboardAppearance : If overrideKeyboardAppearance is YES, then all the textField keyboardAppearance issetusing this property.
关闭UITextField/UITextView
@propertyBOOL shouldResignOnTouchOutside : Resign textField if touched outside of UITextField/UITextView.

-(void)resignFirstResponder : Resigns currently first responder field.
UISound处理
@property BOOL shouldPlayInputClicks : If YES, then it plays inputClick sound onnext/previous/done click. Defaultis NO.
UIAnimation
@property BOOL shouldAdoptDefaultKeyboardAnimation : If YES, thenuses keyboard default animation curve style to move view, otherwise uses UIViewAnimationOptionCurveEaseOut animation style. Defaultis YES.

特征

1)支持设备方向。 
2)启用/禁用键盘消息时,需要设置 enable 的布尔值。 
3)简单的集成。 
4)作为一个textField/textViewAutoHandle UIToolbar需要设置 enableAutoToolbar 的布尔值。 
5)可以由父视图AutoHandle UIToolbartextField/textView,使用toolbarManageBehaviour枚举。 
6)方便地添加上下和完成按钮键盘UIToolbar UIView类,自动使用enableAutoToolbar布尔值。 
7)启用/禁用,下/上一个按钮类的方法,自动使用enableAutoToolbar布尔值。 
8)键盘设置距离文本框使用keyboardDistanceFromTextField。 
9)键盘触摸外面用shouldResignOnTouchOutside. 禁用。 
10)管理的框架时,UITextView高度太大,使用canAdjustTextView 设置适合屏幕。 
11)适用在UITableView/UIScrollView 中的UITextField/UITextView
12)可以输入声音在点击“下/上一页/完成”时。

延伸阅读:

IQKeyboardManager 
      iOS自动处理键盘事件的第三方库:IQKeyboardManager

以上就介绍了iOS 键盘自适应(IQKeyboardManager)使用小结,包括了方面的内容,希望对IOS开发有兴趣的朋友有所帮助。

本文网址链接:http://www.codes51.com/article/detail_117701.html

时间: 2024-11-09 10:41:06

iOS 键盘自适应(IQKeyboardManager)使用小结的相关文章

iOS 键盘框架IQKeyboardManager使用

框架地址:https://github.com/hackiftekhar/IQKeyboardManager AppDelegate.m文件中 #import <IQKeyboardManager.h> - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    IQKeyboardManager *manager = [IQK

ios 键盘处理

IOS 解决键盘挡住输入框的问题 IQKeyBoardManager http://code4app.com/ios/IQKeyBoardManager/524260bf6803fa7a41000001 完善-- iOS之键盘挡住输入框的解决方法 ios输入框被键盘挡住的解决办法 关于IOS键盘遮住输入框以及关闭的方法. IOS学习笔记36—解决键盘遮挡输入框(UITextField)问题 完美解决ios4与ios5输入框随键盘移动问题 ios 键盘处理,布布扣,bubuko.com

IOS 键盘的显示与关闭,以及移动显示(UITextView处理完整版)

IOS 键盘的显示与关闭 在每一个IOS应用中,几乎不可避免的要进行文本输入操作,例如要求用户填写登陆注册信息,进行话题的评论回复,等等.用到的文本输入组件有UITextField,UITextView,对于这两个组件的相关属性和方法想必大家都很熟悉,但貌似对于键盘的显示或隐藏过程貌似常常不是很清楚,其实本人也是一知半解,所以趁此做简单的总结,基本上以下描述出自于官方的文档,并没有什么更改. 1.开启键盘面板 当用户触击某一个view时,系统会自动指定该view为第一响应对象(first res

iOS Storyboard unwind segues使用小结

iOS Storyboard unwind segues使用小结 转载:http://blog.csdn.net/kid_devil/article/details/23218195 使用storyboard开发的时候,经常会在一个scene上添加一个button,再拖拽这个button到某个想要关联的页面,最后选择push的方式跳转.这样scene_A和scene_B就有了一个“顺序”的跳转方式了.但有时,希望可以从scene_B触发某个action,跳转回scene_A.如果还采用刚才的方式

ios ---键盘的监听事件

//在view将要出现的时候重载viewWillAppear方法添加通知 监听事件 keyboardWillShow:  keyboardWillHide: - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:

iOS界面设计切图小结

iOS界面设计切图小结 APR 12TH, 2013 1.基本尺寸 (1)界面 实际设计时按: iPhone4.4s:640px*960px iPhone5: 640px*1136px iPad:1536px*2048px (2) 图标: 1024px*1024px 圆角180px 提交1024px*1024px 方角 png格式图片 2.图形部件及字体 (1) 为显示清晰 所有图形部件尺寸必须为偶数 样式中阴影.发光.描边的数值也必须为偶数 (2) 为方便用户点击 所有可点击的部件需大于88p

IOS键盘样式风格有关设置

一.键盘风格 UIKit框架支持8种风格键盘. typedef  enum  { UIKeyboardTypeDefault,                 // 默认键盘:支持所有字符 UIKeyboardTypeASCIICapable,            // 支持ASCII的默认键盘 UIKeyboardTypeNumbersAndPunctuation,   // 标准电话键盘,支持+*#等符号 UIKeyboardTypeURL,                     // 

WPF自适应窗体实现小结

WPF自适应窗体实现小结 这几天,因工作需要,要对一个小软件进行UI调整.主要内容就是让其能够实现自适应窗体(包括文字和图标),做成像WIN7下的Media Center一样的UI.自适应窗体,顾名思义,就是窗口内容的显示大小能够随着窗口的大小变化而变化.今天我来说说如何用WPF来实现自适应窗体. 首先WPF是微软推出的新一代视窗系统,用来代替MFC.用MFC来实现自适应窗体,需要捕获Resizing事件,然后对窗口内容大小进行逐一调整,还是比较麻烦的.但是WPF不同,因为WPF自带的Layou

IOS键盘的相关设置(UITextfield)

http://blog.csdn.net/h3c4lenovo/article/details/8447661 一.键盘风格 UIKit框架支持8种风格键盘. typedef enum { UIKeyboardTypeDefault,                // 默认键盘:支持所有字符 UIKeyboardTypeASCIICapable,           // 支持ASCII的默认键盘 UIKeyboardTypeNumbersAndPunctuation,  // 标准电话键盘,