This commit is contained in:
Igor Kislyuk 2017-12-04 11:42:52 +03:00
parent 9bb955a4fe
commit cf9b3a72c5
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public enum EditableActionType {
case copy case copy
case paste case paste
public static let allActions = [EditableActionType.selectAll, .select, .cut, .paste, .copy] public static let allActions: [EditableActionType] = [.selectAll, .select, .cut, .paste, .copy]
} }
open class EditableTextField: UITextField { open class EditableTextField: UITextField {