Underline button text in Swift

后端 未结 14 1836
暖寄归人
暖寄归人 2021-01-30 10:26

I have UIButton. In interface builder I set its title to be \'Attributed\'. How can I make its title to be underlined from code in Swift?

@IBOutlet weak var myBt         


        
14条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-30 10:53

    May not be the best approach but I made an example to use it with a separated class and make only a one line call to get the text.

    Here is my class:

    import Foundation
    import UIKit
    
    enum AttributedTextsType {
        case underlined
        case bold
        case boldUnderlined
    }
    
    class AttributedTexts {
        private static func underlinedText(color: UIColor, size: CGFloat) -> [NSAttributedString.Key : Any] {
        let attrs = [
            NSAttributedString.Key.font : UIFont.systemFont(ofSize: size),
            NSAttributedString.Key.foregroundColor : color,
            NSAttributedString.Key.underlineStyle : 1] as [NSAttributedString.Key : Any]
        return attrs
        }
    
        private static func getAttibute(type: AttributedTextsType, color: UIColor, size: CGFloat) -> [NSAttributedString.Key : Any] {
            var attributes: [NSAttributedString.Key : Any]!
            switch type {
            case .underlined:
                attributes = AttributedTexts.underlinedText(color: color, size: size)
                break
            case .bold:
                attributes = AttributedTexts.underlinedText(color: color, size: size)
                break
            case .boldUnderlined:
                attributes = AttributedTexts.underlinedText(color: color, size: size)
                break
            }
            return attributes
        }
    
        static func set(string: String, color: UIColor, type: AttributedTextsType, size: CGFloat = 19.0) -> NSMutableAttributedString {
            let attributes = getAttibute(type: type, color: color, size: size)
            let attributedString = NSMutableAttributedString(string:"")
            let buttonTitleStr = NSMutableAttributedString(string: string, attributes: attributes)
            attributedString.append(buttonTitleStr)
            return attributedString
        }
    }
    

    Usage let attributedString = AttributedTexts.set(string: "Skip", color: .white, type: .underlined, size: 19.0)

    Best regards

提交回复
热议问题