SkyFloatingLabelTextField icon indicating copy to clipboard operation
SkyFloatingLabelTextField copied to clipboard

How to have placeholder with mandatory symbol *

Open arishanapalli opened this issue 3 years ago • 1 comments

How to have SkyFloatingLabelTextField with mandatory symbols * with red colour. Placeholder text is "Enter your password *", The * should be in different colour?

arishanapalli avatar Dec 28 '22 07:12 arishanapalli

You can use this

        let placeholderAttriburedString = NSMutableAttributedString(string: "Email")
        if let isRequired = dataSource["required"] as? Bool, isRequired {
            let asterix = NSAttributedString(string: " *", attributes: [.foregroundColor: UIColor.red])
            placeholderAttriburedString.append(asterix)
        }
        self.textField.attributedPlaceholder = placeholderAttriburedString

ronak-selldo avatar Aug 22 '23 09:08 ronak-selldo