You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
602 B
25 lines
602 B
1 year ago
|
//
|
||
|
// UITextField+Extension.swift
|
||
|
// HPlusFit
|
||
|
//
|
||
|
// Created by lemo. on 2019/10/19.
|
||
|
// Copyright © 2019 lemo. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension UITextField {
|
||
|
|
||
|
func baseBorder() {
|
||
|
layer.borderColor = kHexColor(0xE4E4E4).cgColor
|
||
|
layer.borderWidth = 0.5
|
||
|
layer.cornerRadius = 3
|
||
|
}
|
||
|
|
||
|
func basePlaceholder(str: String) {
|
||
|
let str = NSAttributedString(string: str, attributes: [NSAttributedString.Key.foregroundColor: kHexColor(0x969696), NSAttributedString.Key.font: SystemLightFont(16)])
|
||
|
attributedPlaceholder = str
|
||
|
}
|
||
|
|
||
|
}
|