CocoaTextField 1.1.2

CocoaTextField 1.1.2

Edgar Žigis维护。




  • Edgar Žigis

CocoaTextField

高度可定制的文本字段,遵循 Material.IO 指引创建。

最低 iOS 版本 11.0

alt text

Carthage

github "edgar-zigis/CocoaTextField" ~> 1.1.1

Cocoapods

pod 'CocoaTextField', '~> 1.1.1'

Swift 包管理器

dependencies: [
    .package(url: "https://github.com/edgar-zigis/CocoaTextField.git", .upToNextMajor(from: "1.1.1"))
]

用法

let textField = CocoaTextField()
textField.placeholder = "Your hint"
textField.inactiveHintColor = UIColor(red: 209/255, green: 211/255, blue: 212/255, alpha: 1)
textField.activeHintColor = UIColor(red: 94/255, green: 186/255, blue: 187/255, alpha: 1)
textField.focusedBackgroundColor = UIColor(red: 236/255, green: 239/255, blue: 239/255, alpha: 1)
textField.defaultBackgroundColor = UIColor(red: 250/255, green: 250/255, blue: 250/255, alpha: 1)
textField.borderColor = UIColor(red: 239/255, green: 239/255, blue: 239/255, alpha: 1)
textField.errorColor = UIColor(red: 231/255, green: 76/255, blue: 60/255, alpha: 0.7)
textField.borderWidth = 1
textField.cornerRadius = 11

注释

可编程方式和使用故事板两种方式均可使用。示例代码在 CocoaTextFieldTest 中提供。