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.
24 lines
602 B
24 lines
602 B
// |
|
// 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 |
|
} |
|
|
|
}
|
|
|