Questions tagged [iqkeyboardmanager]

Use this tag when you have questions about the IQKeyboardManager library and not about the iOS keyboard in general.

IQKeyboardManager is an iOS library that allows you to prevent issues of keyboard sliding up and cover UITextField/UITextView without needing you to writing any code and much more.

118 questions
2
votes
1 answer

Why doesn't IQKeyboardManager scroll my UITableView to make my custom cell's textfield visible

This is the result I currently get (unwanted): https://vimeo.com/459984986. This is the result I get using a workaround (almost what I want): https://vimeo.com/459986233. The summary of what my problem is, is the following: (1) I have installed the…
2
votes
2 answers

Done button action from IQKeyboardManager not working in Swift

We are using IQKeyboardManager library for Swift project. Its working fine, but, After clicking the "Done" button its not calling the method. override func viewDidLoad() { super.viewDidLoad() self.myTextField.delegate = self …
2
votes
1 answer

Status bar background colour issue happening in iOS 11.3

I have textfields in my viewcontroller view. So, few of textfields are hiding behind keyboard while appearing. So, I have integrated IQKeyboardManager by pod and textfields are moving up while keyboard appears. But, strangely, I am facing some…
2
votes
2 answers

AutoLayout issue Swift 3.0

I have already Autolayout this screenshot using.I want when i click textView,textView will always just above Keyboard and also i am using custom NavigationBar.I already used IQKeyBoardManagerSwiftIt is working but my NavigationBar also moves up I…
2
votes
1 answer

IQKeyboardManager is not working in Xcode 9 , next , prev & done buttons are not on Keyboard toolbar

IQKeyboardmanager toolbar works fine if i use Xcode8, but when i use Xcode 9 there is no next , prev & done buttons on Keyboard toolbar.Even other feature are not working in Xcode 9.
SThakur
  • 262
  • 4
  • 16
2
votes
2 answers

Dismiss keyboard as well as fire button's touchupinside event using IQKeyboardManager

I am using this code in appdelegate IQKeyboardManager.sharedManager().enable = true IQKeyboardManager.sharedManager().shouldResignOnTouchOutside = true IQKeyboardManager.sharedManager().touchResignedGestureIgnoreClasses =…
Preeti Rani
  • 685
  • 7
  • 17
2
votes
2 answers

IQKeyboardManager not working properly in my view controller

Currently I have an UI designed that consists of two simple text fields for resetting password. In my viewm, I haven't used the UIScrollView. So when the UI displays on an iPhone SE, the UI should move up as the UITextField gets hidden behind the…
Jessica thompson
  • 407
  • 2
  • 8
  • 20
2
votes
1 answer

How to skip hidden a UITextField with IQKeyboardManager?

How can I skip a hidden UITextField when using IQKeyboardManager? Currently when I press the next arrow, it goes through every text field. And how to make the keyboard's next button go to the next text field?
PashaN
  • 444
  • 1
  • 4
  • 16
2
votes
1 answer

Fix status bar position

I added a status bar background view from app delegate with the following code: let view = UIView(frame: CGRect(x: 0.0, y: 0.0, width: UIScreen.mainScreen().bounds.size.width, height: 20.0)) view.backgroundColor =…
bikram sapkota
  • 1,106
  • 1
  • 13
  • 18
2
votes
2 answers

In localization, keyboard appears only with English language

I am trying to make my app through internationalization and it works pretty well. I made it in two languages: Turkish and English. But when I run my app in Turkish language, labels and buttons show Turkish language, but when I tap my UITextField,…
2
votes
1 answer

Build Error in IQKeyboardManager

I am using IQKeyboardManager Swift2 branch via source code inclusion in my project (Xcode 7, Swift 2.0) I get this build errors in IQKeyboardReturnKeyHandler.swift and cannot imagine why they appear in my build: The error seems to be that the…
beseder
  • 1,352
  • 2
  • 15
  • 25
2
votes
1 answer

IQKeyboardManager navigation from UITextField to UITextView

IQKeyboardManager provides arrows in a toolbar just above my keyboard to jump from one UITextField to another but I am looking if I can jump between a mixture of UITextFields and UITextViews. I know the normal procedure to accomplish this task but I…
Pradeep Mittal
  • 595
  • 1
  • 8
  • 19
2
votes
4 answers

how to get iqkeyboardmanager to include UISearchBar

I have been using IQKeyboardManager to controller the keyboard in my app. It works fine, except with UISearchBar. How do I make it work with UISearchBar?
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
1
vote
1 answer

IQKeyboardManager Swift Does Not Work At All

as the title says, I'm attempting to fix up this project given to me and they use IQSharedKeyboard which from what I've read is supposed to be great. The problem is that it doesn't work, at all. It pushes my top header up whenever it does try to…
Zach Handley
  • 914
  • 1
  • 12
  • 25
1
vote
0 answers

IOS App - SomeTime Uitextfield "PASTE" command appear in top left corner

After Orientation change in device The PASTE menu is displayed on top-left of the screen and cannot be accessed. Please see Screenshot. How to display "PASTE" command above to textField? Thank you!