美文网首页
UITextField扩展

UITextField扩展

作者: 白色天空729 | 来源:发表于2018-05-21 23:02 被阅读9次
    //  UITextField扩展
    
    import UIKit
    extension UITextField {
        /// UITextField占位文字修改
        ///
        /// - Parameters:
        ///   - placeHolderStr: 占位文字
        ///   - withFont: 文本大小
        ///   - withColor: 文本颜色
        func placeHolderChange(_ placeHolderStr : String,_ withFont : UIFont,_ withColor : UIColor) {
            let attributes = [
                NSAttributedStringKey.foregroundColor: withColor,
                NSAttributedStringKey.font : withFont // Note the !
                ] as [NSAttributedStringKey : Any]
            
            attributedPlaceholder = NSAttributedString(string: placeHolderStr, attributes:attributes)
        }
    }
    
    

    相关文章

      网友评论

          本文标题:UITextField扩展

          本文链接:https://www.haomeiwen.com/subject/enrcjftx.html