rv7284
4/17/2017 - 9:49 AM

Button extension

Button extension

func underline() {
    let yourAttributes : [String: Any] = [
        NSFontAttributeName : self.titleLabel!.font,
        NSForegroundColorAttributeName : self.titleLabel!.textColor,
        NSUnderlineStyleAttributeName : NSUnderlineStyle.styleSingle.rawValue]
        
    let attributeString = NSMutableAttributedString(string: self.title(for: .normal)!,
                                                    attributes: yourAttributes)
    self.setAttributedTitle(attributeString, for: .normal)
}