Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions PhoneNumberKit/UI/PhoneNumberTextField.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ open class PhoneNumberTextField: UITextField, UITextFieldDelegate {
return super.text
}
}
/// Forces textContentType to .telephoneNumber for autofill support.
override open var textContentType: UITextContentType! {
get { .telephoneNumber }
set {}
}

/// allows text to be set without formatting
open func setTextUnformatted(newValue: String?) {
Expand Down