imjaydeep
imjaydeep

Reputation: 978

Done button invisible in IQkeyboardManager library

I have used IQKeyboardManager library in my app. i installed IQKeyboardManager via cocoapods. Done button is not showing up on each keyboard. that is invisible.

here below my code that i have set in AppDelegate.swift file.

IQKeyboardManager.shared().isEnabled = true

enter image description here

Upvotes: 6

Views: 6873

Answers (5)

Dheeraj D
Dheeraj D

Reputation: 4451

I was using IQKeyboardManager for Objective C and facing same issue.

I have installed IQKeyboardManager objective C pod using:

pod 'IQKeyboardManager'

All again working fine now. I am able to see Done, Next and Prev button for iOS 11.

Upvotes: 0

Krunal
Krunal

Reputation: 79706

It's an issue from library itself and resolved (closed) on 21st-Aug-17.

Update your existing IQKeyboardManager library to latest version v5.0.3

pod 'IQKeyboardManagerSwift'

Upvotes: 1

imjaydeep
imjaydeep

Reputation: 978

it is fixed in latest V4.0.13. Now it is showing Done button above keyboard toolbar

Upvotes: 5

Arnav
Arnav

Reputation: 688

just remove your IQkeyBoardManager pod and reinstall it as :

pod 'IQKeyboardManagerSwift'

It will upgrade it to highest version.

Check this out : https://github.com/hackiftekhar/IQKeyboardManager/issues/917

Upvotes: 3

Devang Tandel
Devang Tandel

Reputation: 3008

The solution you are looking for is

Change Return Key to Done in property of UITextfiled at which which you want to show Done button.

enter image description here

Upvotes: 0

Related Questions