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
0
votes
3 answers

No such module 'IQKeyboardManagerSwift'

New to Xcode (dabble a little). I paid a developer to build an iOS app for me. He sent me the source code and I have opened it in Xcode 13.2.1. I needed to edit the info.plist to include a description why location was required (got this done). When…
Joseph
  • 11
  • 3
0
votes
1 answer

How do I adjust the size of a UITableView in viewDidLoad?

I have a view controller with two elements: a UITableView and a UIView that contains a UITextField. I am also using the IQKeyboardManager library so that my UITextField is visible. Here is the code that controls them: override func viewDidLoad() { …
David
  • 769
  • 1
  • 6
  • 28
0
votes
3 answers

How to get Indexpath of textfield which placed in tableview when tap on done button using keyboard IQKeyboardManagerSwift in swift

I am new in swift and I am using IQKeyboardManagerSwift library for textfield and textview. I am not able to send Indexpath from tableview to selector function. My code is like this TableViewCell func tableView(_ tableView: UITableView,…
Muju
  • 884
  • 20
  • 54
0
votes
2 answers

IQKeyboardManager: is it possible to change the distance between the UITextField and the Keyboard?

This is the default view without the keyboard This is what happens when the keyboard shows up I am using the IQKeyboardManagerSwift and would like to reduce the distance between the keyboard and the textfield. I have already tried changing…
VladislavS
  • 370
  • 2
  • 12
0
votes
4 answers

Pinning a UIView to the top of the screen programaticaly

This may be a simple question but I am struggling to find an answer that explains itself on the internet. What is the swift equivalent of setting an element's "position: fixed" from CSS? I am trying to pin a UIView to the top of the screen so that…
mark32
  • 103
  • 1
  • 1
  • 8
0
votes
1 answer

Custom Keyboard Apps (IQKeyboardManager & SwiftKey)

I have a user who has this problem in their IphoneX iOS 13.2, he has no "done" button to accept a comment because seems like he is using SwiftKey app for custom keyboards and in my testing IQKeyboardManager is doing good. So SwiftKey app has a…
Marlhex
  • 1,870
  • 19
  • 27
0
votes
1 answer

IQKeboard manager leaving lot of top space when going to previous textfield

I have list of textfields inside stackviews which are again embedded in scrollview. For keyboard handling I've used IQKeyboard manager it works fine. Although there is a special case when it leaves too much space on top. Below is my current UI…
0
votes
1 answer

IQKeyboardManager scrolls whole screen but want to scroll only tableview content

In My Chatting App textFieldDidBeginEditing adds keyboard height automatic using IQKeyboardManager but it scrolls whole screen to top. I have a requirement to only scroll tableView's content. My navigationBar should stay attached to top but using…
0
votes
1 answer

Height of the UITextView increases when using IQKeyboardManagers

I recently started to use IQKeyboardManager in my app that I am working on, it works really well except for a little problem. The height of my text view increases when the keyboard appears(Which makes the text view go up), I know this because I am…
Abdullah Ajmal
  • 431
  • 5
  • 17
0
votes
0 answers

swift - texfield call editingDidBegin after editingDidEnd

I have a tableView cell with textfield, which also show picker, where I displaying filtered list of data, and it filter by input symbols. I'm using IQkeyboardManager and McPicker. When user begins editing, picker is presenting as modal. Then, if…
nastassia
  • 807
  • 1
  • 12
  • 31
0
votes
0 answers

Why does my app crash when I tap on UITextField with iqkeyboardmanager?

I am using the iqkeyboardmanager to manage the keyboard in my app. When I tap on a UITextfield to edit it, the app get crashes with the following message: -[UIWindow actualSceneBounds]: unrecognized selector sent to instance…
Kaush Par
  • 59
  • 5
0
votes
2 answers

Cannot import IQKeyboardManager in Objective-C project

I installed, IQKeyboardManager with pod. using this line: pod 'IQKeyboardManager' Then I wanted to import it in a view controller: In view controller .m file (I tested both of import lines): 1. #import "IQKeyboardManager.h" ----> clang: error:…
Fattaneh Talebi
  • 727
  • 1
  • 16
  • 42
0
votes
2 answers

problem with attributed text for keyboard titleBarButton when using IQKeyBoardManager

I am using IQKeyboardManager with Swift. I have added a cancel button on my datepicker. Everything is working, but I am having trouble with the attributed text for the cancel button not taking effect. What am I doing wrong? Here is a code…
Mc.Stever
  • 782
  • 6
  • 16
0
votes
2 answers

iOS How to move scrollbar when Keybord is visible

I am making an app that needs to create a Registration Form to take user inputs. For inputs I have 4 fields. I adjusted 4 fields in UIStackView and made stakeview vertically centered as it was a design of app. Everything is going good. but in small…
A.s.ALI
  • 1,992
  • 3
  • 22
  • 54
0
votes
1 answer

Set lastTextFieldReturnKeyType with nativescript-IQKeyboardManager

I want to set the lastTextFieldReturnKeyType to DONE. I think I have to use IQKeyboardReturnKeyHandler, but I don't know how in Angular/typescript. Does anyone have any experience with this? I was unable to find it in…