TweeAttributedTextField
open class TweeAttributedTextField : TweeActiveTextField
An object of the class can show the custom info label under text field.
-
Info label that is shown for a user. This label will appear under the text field. You can use it to configure appearance.
Declaration
Swift
public private(set) lazy var infoLabel: UILabel { get set } -
Animation duration for showing and hiding the info label.
Declaration
Swift
@IBInspectable public var infoAnimationDuration: Double -
Color of info text.
Declaration
Swift
@IBInspectable public var infoTextColor: UIColor { get set } -
Font size of info text. If you want to change font use
infoLabelproperty.Declaration
Swift
@IBInspectable public var infoFontSize: CGFloat { get set }
-
Shows info label with/without animation.
Declaration
Swift
@objc(showAttributtedInfo:animated:) public func showInfo(_ attrText: NSAttributedString, animated: Bool = true)Parameters
textCustom attributed text to show.
animatedBy default is
true. -
Shows info label with/without animation.
Declaration
Swift
@objc public func showInfo(_ text: String, animated: Bool = true)Parameters
textCustom text to show.
animatedBy default is
true. -
Hides the info label with animation or not.
Declaration
Swift
@objc public func hideInfo(animated: Bool = true)Parameters
animatedBy default is
true.
View on GitHub
Install in Dash
TweeAttributedTextField Class Reference