Reputation: 978
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
Upvotes: 6
Views: 6873
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
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
Reputation: 978
it is fixed in latest V4.0.13. Now it is showing Done button above keyboard toolbar
Upvotes: 5
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
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.
Upvotes: 0