Зміна кольору тексту заповнювача за допомогою Swift


226

У мене є дизайн, який реалізує темно-синій колір UITextField, оскільки текст-заповнювач за замовчуванням має темно-сірий колір, я ледве можу зрозуміти, що говорить текст власника місць.

Я, звичайно, вирішив проблему, але мені ще потрібно знайти рішення, використовуючи мову Swift, а не Obj-c.

Чи є спосіб змінити колір тексту заповнювача у UITextFieldвикористанні Swift?

Відповіді:


501

Ви можете встановити текст заповнення за допомогою атрибутованого рядка . Передайте потрібний колір за допомогою attributes:

var myTextField = UITextField(frame: CGRect(x: 0, y: 0, width: 200, height: 30))
myTextField.backgroundColor = .blue
myTextField.attributedPlaceholder = NSAttributedString(string: "placeholder text",
                             attributes: [NSForegroundColorAttributeName: UIColor.yellow])

Для Swift 3+ використовуйте наступне:

myTextField.attributedPlaceholder = NSAttributedString(string: "placeholder text",
                             attributes: [NSAttributedStringKey.foregroundColor: UIColor.white])

Для Swift 4.2 використовуйте наступне:

myTextField.attributedPlaceholder = NSAttributedString(string: "placeholder text",
                             attributes: [NSAttributedString.Key.foregroundColor: UIColor.white])

iOS 11 SDK - у ключа немає переднього плануColor: self.emailTextField? .attributedPlaceholder = NSAttributedString (рядок: "текст заповнювача", атрибути: [NSAttributedStringKey.foregroundColor: UIColor.white])
Меттью Фергюсон,

@MatthewFerguson, я просто спробував це і працює. У вас є випущена версія Xcode 9? Який тип emailTextField?
vacawama

2
@vacawama. Дякую за обмін. Спадковий проект, оновив мій Xcode із магазину додатків - версія 9.0 (9A235), і нарешті придумав рішення self.passwordTextField? .AttributedPlaceholder = NSAttributedString (рядок: "PASSWORD", атрибути: [NSForegroundColorAttributeName: UIColor.white])
Меттью Фергюсон

3
для використання iOS 11 SDKmyTextField.attributedPlaceholder = NSAttributedString(string: "placeholder text", attributes: [NSForegroundColorAttributeName: UIColor.white])
Gema Megantara

1
Чи є спосіб встановити колір без встановлення рядка?
ScottyBlades

285

Це можна зробити швидко, не додаючи код коду, використовуючи Interface Builder.

Виберіть UITextFieldі відкрийте інспектора посвідчення особи праворуч:

введіть тут опис зображення

Натисніть кнопку плюс і додайте новий атрибут виконання:

placeholderLabel.textColor (Swift 4)

_placeholderLabel.textColor (Swift 3 або менше)

Використовуйте Колір як тип і виберіть колір.

Це воно.

Ви не побачите результат, поки не запустите додаток знову.


1
правда, але це свого роду хак, оскільки власність placeholderLabel.textColor є приватною ...
Frédéric Adda

1
буде відхилено додаток, оскільки ми використовуємо приватну власність класу?
firecast

2
На жаль, це, здається, не працює на iOS 10 принаймні.
nickdnk

2
@nickdnk Неправда. Зараз я тестував на iOS 10.2.1, і він працює. :)
Андрій

2
Хороший шлях до несподіваної аварії, якщо Apple змінить внутрішню реалізацію.)
Влад

127

Створіть UITextFieldрозширення так:

extension UITextField{
   @IBInspectable var placeHolderColor: UIColor? {
        get {
            return self.placeHolderColor
        }
        set {
            self.attributedPlaceholder = NSAttributedString(string:self.placeholder != nil ? self.placeholder! : "", attributes:[NSAttributedString.Key.foregroundColor: newValue!])
        }
    }
}

І у вашій розкадровці або .xib. Ти побачиш

введіть тут опис зображення


11
⚠️ Попередження: Це розширення призведе до збою вашої програми, якщо ви коли-небудь вирішите прочитати ресурс placeHolderColor! Якщо ви повернете собі значення обчислюваної властивості з одержувача властивості, отримувач буде викликаний знову зсередини гетьтера, що призведе до нескінченної рекурсії. (Див.: Stackoverflow.com/a/42334711/2062785 )
Mischa

1
Щоб виправити це та отримати очікувану поведінку (тобто правильний колір заповнювача), отримайте attributedStringпершу букву (якщо вона не порожня) та поверніть її колір тексту, інакше nil.
Міща

чому в коробці показано 2 кольори. Я подумав, що це для темного режиму, але це було не так.
asreerama

27

У Swift 3.0, використовувати

let color = UIColor.lightText
textField.attributedPlaceholder = NSAttributedString(string: textField.placeholder, attributes: [NSForegroundColorAttributeName : color])

У Siwft 5.0 + Use

let color = UIColor.lightText
let placeholder = textField.placeholder ?? "" //There should be a placeholder set in storyboard or elsewhere string or pass empty
textField.attributedPlaceholder = NSAttributedString(string: placeholder, attributes: [NSAttributedString.Key.foregroundColor : color])

24

Цей код працює в Swift3:

yourTextFieldName .setValue(UIColor.init(colorLiteralRed: 80/255, green: 80/255, blue: 80/255, alpha: 1.0), forKeyPath: "_placeholderLabel.textColor")

дайте мені знати, якщо у вас є якісь проблеми.


чомусь це виходить з ладу, коли я намагаюся зробити це на більш ніж 1 текстовому полі. Перший працює добре, тоді він виходить з ладу на всіх наступних текстових полях. Не знаю, чому, але я б хотів, щоб я міг використовувати цей метод, оскільки його найпростіший і найчитабельніший
Tommy K

Немає необхідності використовувати setValueдля доступу до приватної власності. Використовуйте належні загальнодоступні API.
rmaddy

Це найкраща відповідь ... Tnx так багато.
reza_khalafi

Xcode 10 / Swift 5 буквальний синтаксис:#colorLiteral(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
Lal Krishna

15

Щоб встановити колір заповнення один раз для всіх UITextFieldу вашій програмі, ви можете:

UILabel.appearanceWhenContainedInInstancesOfClasses([UITextField.self]).textColor = UIColor.redColor()

Це встановить бажаний колір для всіх TextField заповнювачів у всій програмі. Але він доступний лише з iOS 9.

Перед iOS 9 у швидкому режимі немає методу примірникаWhenContainIn .... (), але ви можете використовувати одне із запропонованих тут варіантів появиWhenContainIn у Swift


це змінить не тільки колір заповнювача, але і колір тексту.
Тимур Сулейманов

7

У моєму випадку я використовую Swift 4

Я створюю розширення для UITextField

extension UITextField {
    func placeholderColor(color: UIColor) {
        let attributeString = [
            NSAttributedStringKey.foregroundColor: color.withAlphaComponent(0.6),
            NSAttributedStringKey.font: self.font!
            ] as [NSAttributedStringKey : Any]
        self.attributedPlaceholder = NSAttributedString(string: self.placeholder!, attributes: attributeString)
    }
}

yourField.placeholderColor (колір: UIColor.white)


6

Xcode 9.2 Swift 4

extension UITextField{
    @IBInspectable var placeHolderColor: UIColor? {
        get {
            return self.placeHolderColor
        }
        set {
            self.attributedPlaceholder = NSAttributedString(string:self.placeholder != nil ? self.placeholder! : "", attributes:[NSAttributedStringKey.foregroundColor: newValue!])
        }
    }
}

2
Це не спрацює. Геттер спричинить нескінченну рекурсію.
rmaddy

2
Це працює нормально швидко 4. Я зробив точку розриву в коді і перевірив його .. нескінченна рекурсія не відбувається.
Р. Мохан

1
НЕ ВИКОРИСТОВУЙТЕ ЦЕ. це призведе до нескінченної рекурсії. спробуйте: надрукувати (textField.placeHolderColor)
Девід Різ

5

Швидкий 4:

txtControl.attributedPlaceholder = NSAttributedString(string: "Placeholder String...",attributes: [NSAttributedStringKey.foregroundColor: UIColor.gray])

Завдання-C:

UIColor *color = [UIColor grayColor];
txtControl.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"Placeholder String..." attributes:@{NSForegroundColorAttributeName: color}];

4

Ось моя швидка реалізація для швидкого 4:

extension UITextField {
    func placeholderColor(_ color: UIColor){
        var placeholderText = ""
        if self.placeholder != nil{
            placeholderText = self.placeholder!
        }
        self.attributedPlaceholder = NSAttributedString(string: placeholderText, attributes: [NSAttributedStringKey.foregroundColor : color])
    }
}

використовувати як:

streetTextField?.placeholderColor(AppColor.blueColor)

сподіваюся, що це комусь допоможе!


Swift 4.2: self.attributedPlaceholder = NSAttributedString (рядок: placeholderText, атрибути: [NSAttributedString.Key.foregroundColor: color])
Шон Стайнс

4

Swift 3 (можливо, 2), ви можете замінити didSet на заповнювачі в UITextFieldпідкласі, щоб застосувати до нього атрибут таким чином:

override var placeholder: String? {

    didSet {
        guard let tmpText = placeholder else {
            self.attributedPlaceholder = NSAttributedString(string: "")
            return
        }

        let textRange = NSMakeRange(0, tmpText.characters.count)
        let attributedText = NSMutableAttributedString(string: tmpText)
        attributedText.addAttribute(NSForegroundColorAttributeName , value:UIColor(white:147.0/255.0, alpha:1.0), range: textRange)

        self.attributedPlaceholder = attributedText
    }
}

4

Для Свіфта

Створіть розширення UITextField

extension UITextField{

    func setPlaceHolderColor(){
        self.attributedPlaceholder = NSAttributedString(string: self.placeholder!, attributes: [NSForegroundColorAttributeName : UIColor.white])
    }
}

Якщо ви налаштовані з раскадровки.

extension UITextField{
    @IBInspectable var placeHolderColor: UIColor? {
        get {
            return self.placeHolderColor
        }
        set {
            self.attributedPlaceholder = NSAttributedString(string:self.placeholder != nil ? self.placeholder! : "", attributes:[NSAttributedString.Key.foregroundColor : newValue!])
        }
    }
}

3

Для Swift 3 та 3.1 це працює чудово:

passField.attributedPlaceholder = NSAttributedString(string: "password", attributes: [NSForegroundColorAttributeName: UIColor.white])

3

Для Swift 4.0, версії X-коду 9.1 або iOS 11 ви можете використовувати наступний синтаксис, щоб мати різний колір заповнювача

textField.attributedPlaceholder = NSAttributedString(string: "Placeholder Text", attributes: [NSAttributedStringKey.foregroundColor : UIColor.white])

3

Я здивований, побачивши, скільки тут є поганих рішень.

Ось версія, яка завжди буде працювати.

Швидкий 4.2

extension UITextField{
    @IBInspectable var placeholderColor: UIColor {
        get {
            return self.attributedPlaceholder?.attribute(.foregroundColor, at: 0, effectiveRange: nil) as? UIColor ?? .lightText
        }
        set {
            self.attributedPlaceholder = NSAttributedString(string: self.placeholder ?? "", attributes: [.foregroundColor: newValue])
        }
    }
}

Порада : Якщо ви зміните текст заповнювача після встановлення кольору - колір буде скинутий.


3

Просто напишіть код нижче в методі didFinishLaunchingWithOptions Appdelegate, використовуйте це, якщо ви хочете змінити всю програму, написану на Swift 4.2

UILabel.appearance(whenContainedInInstancesOf: [UITextField.self]).textColor = UIColor.white

1

оновлення відповіді crubio для Swift 4

Виберіть поле UITextField та відкрийте інспектор посвідчення справа:

Натисніть кнопку плюс і додайте новий атрибут виконання: placeholderLabel.textColor (замість _placeholderLabel.textColor)

Використовуйте Колір як тип і виберіть колір.

Якщо ви запустите проект, ви побачите зміни.


1

Для швидкої версії 4.2 та вище, ви можете зробити це як нижче:

textField.attributedPlaceholder = NSAttributedString(string: "Placeholder Text", attributes: [NSAttributedString.Key.foregroundColor: UIColor.white])

1

У моєму випадку я зробив наступне:

extension UITextField {
    @IBInspectable var placeHolderColor: UIColor? {
        get {
            if let color = self.attributedPlaceholder?.attribute(.foregroundColor, at: 0, effectiveRange: nil) as? UIColor {
                return color
            }
            return nil
        }
        set (setOptionalColor) {
            if let setColor = setOptionalColor {
                let string = self.placeholder ?? ""
                self.attributedPlaceholder = NSAttributedString(string: string , attributes:[NSAttributedString.Key.foregroundColor: setColor])
            }
        }
    }
}

1

Ось я пишу всі UID-призначення UITextField. За допомогою цього коду ви можете безпосередньо отримати доступ до нього з UI-файлу Інспектор у розгортці

@IBDesignable
class CustomTextField: UITextField {

@IBInspectable var leftImage: UIImage? {
    didSet {
        updateView()
    }
}

@IBInspectable var leftPadding: CGFloat = 0 {
    didSet {
        updateView()
    }
}

@IBInspectable var rightImage: UIImage? {
    didSet {
        updateView()
    }
}

@IBInspectable var rightPadding: CGFloat = 0 {
    didSet {
        updateView()
    }
}

private var _isRightViewVisible: Bool = true
var isRightViewVisible: Bool {
    get {
        return _isRightViewVisible
    }
    set {
        _isRightViewVisible = newValue
        updateView()
    }
}

func updateView() {
    setLeftImage()
    setRightImage()

    // Placeholder text color
    attributedPlaceholder = NSAttributedString(string: placeholder != nil ?  placeholder! : "", attributes:[NSAttributedString.Key.foregroundColor: tintColor])
}

func setLeftImage() {
    leftViewMode = UITextField.ViewMode.always
    var view: UIView

    if let image = leftImage {
        let imageView = UIImageView(frame: CGRect(x: leftPadding, y: 0, width: 20, height: 20))
        imageView.image = image
        // Note: In order for your image to use the tint color, you have to select the image in the Assets.xcassets and change the "Render As" property to "Template Image".
        imageView.tintColor = tintColor

        var width = imageView.frame.width + leftPadding

        if borderStyle == UITextField.BorderStyle.none || borderStyle == UITextField.BorderStyle.line {
            width += 5
        }

        view = UIView(frame: CGRect(x: 0, y: 0, width: width, height: 20))
        view.addSubview(imageView)
    } else {
        view = UIView(frame: CGRect(x: 0, y: 0, width: leftPadding, height: 20))
    }

    leftView = view
}

func setRightImage() {
    rightViewMode = UITextField.ViewMode.always

    var view: UIView

    if let image = rightImage, isRightViewVisible {
        let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 20, height: 20))
        imageView.image = image
        // Note: In order for your image to use the tint color, you have to select the image in the Assets.xcassets and change the "Render As" property to "Template Image".
        imageView.tintColor = tintColor

        var width = imageView.frame.width + rightPadding

        if borderStyle == UITextField.BorderStyle.none || borderStyle == UITextField.BorderStyle.line {
            width += 5
        }

        view = UIView(frame: CGRect(x: 0, y: 0, width: width, height: 20))
        view.addSubview(imageView)

    } else {
        view = UIView(frame: CGRect(x: 0, y: 0, width: rightPadding, height: 20))
    }

    rightView = view
}


@IBInspectable public var borderColor: UIColor = UIColor.clear {
    didSet {
        layer.borderColor = borderColor.cgColor
    }
}

@IBInspectable public var borderWidth: CGFloat = 0 {
    didSet {
        layer.borderWidth = borderWidth
    }
}

@IBInspectable public var cornerRadius: CGFloat = 0 {
    didSet {
        layer.cornerRadius = cornerRadius
    }
}
@IBInspectable public var bottomBorder: CGFloat = 0 {
    didSet {
       borderStyle = .none
        layer.backgroundColor = UIColor.white.cgColor

        layer.masksToBounds = false
     //   layer.shadowColor = UIColor.gray.cgColor
        layer.shadowOffset = CGSize(width: 0.0, height: 1.0)
        layer.shadowOpacity = 1.0
        layer.shadowRadius = 0.0
    }
}
@IBInspectable public var bottomBorderColor : UIColor = UIColor.clear {
    didSet {

        layer.shadowColor = bottomBorderColor.cgColor
        layer.shadowOffset = CGSize(width: 0.0, height: 1.0)
        layer.shadowOpacity = 1.0
        layer.shadowRadius = 0.0
    }
}
/// Sets the placeholder color
@IBInspectable var placeHolderColor: UIColor? {
    get {
        return self.placeHolderColor
    }
    set {
        self.attributedPlaceholder = NSAttributedString(string:self.placeholder != nil ? self.placeholder! : "", attributes:[NSAttributedString.Key.foregroundColor: newValue!])
    }
}

}

0

Для Свіфта

func setPlaceholderColor(textField: UITextField, placeholderText: String) {
    textField.attributedPlaceholder = NSAttributedString(string: placeholderText, attributes: [NSForegroundColorAttributeName: UIColor.pelorBlack])
}

Ви можете використовувати це;

self.setPlaceholderColor(textField: self.emailTextField, placeholderText: "E-Mail/Username")

0

Йдеться більше про персоналізацію вашого textField, але все одно я поділюсь цим кодом, отриманим з іншої сторінки, і трохи покращив його:

import UIKit
extension UITextField {
func setBottomLine(borderColor: UIColor, fontColor: UIColor, placeHolderColor:UIColor, placeHolder: String) {
    self.borderStyle = UITextBorderStyle.none
    self.backgroundColor = UIColor.clear
    let borderLine = UIView()
    let height = 1.0
    borderLine.frame = CGRect(x: 0, y: Double(self.frame.height) - height, width: Double(self.frame.width), height: height)
    self.textColor = fontColor
    borderLine.backgroundColor = borderColor
    self.addSubview(borderLine)
    self.attributedPlaceholder = NSAttributedString(
        string: placeHolder,
        attributes: [NSAttributedStringKey.foregroundColor: placeHolderColor]
    )
  }
}

І ви можете використовувати його так:

self.textField.setBottomLine(borderColor: lineColor, fontColor: fontColor, placeHolderColor: placeHolderColor, placeHolder: placeHolder)

Знаючи, що ви UITextFieldпідключились до а ViewController.

Джерело: http://codepany.com/blog/swift-3-custom-uitextfield-with-single-line-input/


0

введіть тут опис зображення

Для цілі C :

UIColor *color = [UIColor colorWithRed:0.44 green:0.44 blue:0.44 alpha:1.0];
 emailTextField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"Friend's Email" attributes:@{NSForegroundColorAttributeName: color}];

Для Swift :

emailTextField.attributedPlaceholder = NSAttributedString(string: "Friend's Email",
                             attributes: [NSAttributedString.Key.foregroundColor: UIColor.white])

0

Об'єктивний код C для зміни кольору тексту заповнення.

Спочатку імпортуйте цей клас objc / runtime -

#import <objc/runtime.h>

потім замініть ім’я текстового поля -

Ivar ivar =  class_getInstanceVariable([UITextField class], "_placeholderLabel");
UILabel *placeholderLabel = object_getIvar(YourTxtField, ivar);
placeholderLabel.textColor = [UIColor whiteColor];


0

для iOS13

+(void)ChangeplaceholderColor :(UITextField *)TxtFld andColor:(UIColor*)color { 
    NSMutableAttributedString *placeholderAttributedString = [[NSMutableAttributedString alloc] initWithAttributedString:TxtFld.attributedPlaceholder];
       [placeholderAttributedString addAttribute:NSForegroundColorAttributeName value:color range:NSMakeRange(0, [placeholderAttributedString length])];
       TxtFld.attributedPlaceholder = placeholderAttributedString;

}

0

Використовуйте так у Swift,

 let placeHolderText = textField.placeholder ?? ""
 let str = NSAttributedString(string:placeHolderText!, attributes: [NSAttributedString.Key.foregroundColor :UIColor.lightGray])
 textField.attributedPlaceholder = str

В Цілі С

NSString *placeHolder = [textField.placeholder length]>0 ? textField.placeholder: @"";
NSAttributedString *str = [[NSAttributedString alloc] initWithString:placeHolder attributes:@{ NSForegroundColorAttributeName : [UIColor lightGrayColor] }];
textField.attributedPlaceholder = str;

0
    extension UITextField{
            @IBInspectable var placeHolderColor: UIColor? {
                get {
                    return self.placeHolderColor
                }
                set {
                    self.attributedPlaceholder = NSAttributedString(string:self.placeholder != nil ?
        self.placeholder! : "",
        attributes:[NSAttributedString.Key.foregroundColor : newValue!])
                }
            } 
}

-1

Використовуйте це для додавання приписаного заповнювача:

let attributes : [String : Any]  = [ NSForegroundColorAttributeName: UIColor.lightGray,
                                     NSFontAttributeName : UIFont(name: "Helvetica Neue Light Italic", size: 12.0)!
                                   ]
x_textfield.attributedPlaceholder = NSAttributedString(string: "Placeholder Text", attributes:attributes)

-1

Для Swift 4

txtField1.attributedPlaceholder = NSAttributedString(string: "-", attributes: [NSAttributedStringKey.foregroundColor: UIColor.white])

1
Це дублікат кількох попередніх відповідей. Не потрібно публікувати повторювані відповіді.
rmaddy

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.