We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43a7db1 commit 2f1daabCopy full SHA for 2f1daab
Example/WSTagsFieldExample/ViewController.swift
@@ -40,6 +40,7 @@ class ViewController: UIViewController {
40
tagsField.backgroundColor = .lightGray
41
tagsField.returnKeyType = .next
42
tagsField.delimiter = ""
43
+ tagsField.keyboardAppearance = .dark
44
45
tagsField.textDelegate = self
46
//tagsField.acceptTagOption = .space
Source/WSTagsField.swift
@@ -142,6 +142,7 @@ open class WSTagsField: UIScrollView {
142
143
open var keyboardAppearance: UIKeyboardAppearance = .default {
144
didSet {
145
+ textField.keyboardAppearance = self.keyboardAppearance
146
tagViews.forEach { $0.keyboardAppearanceType = self.keyboardAppearance }
147
}
148
0 commit comments