我为UITextField创建了扩展。我需要UITextView的相同扩展名。如何使这个扩展可用于所有其他视图?
我的扩展程序代码:
extension UITextField {
func addTopBorderWithColor(color: UIColor, height: CGFloat) {
let border = CALayer()
border.backgroundColor = color.CGColor
border.frame = CGRectMake(0, 0, self.frame.size.width, height)
self.layer.addSublayer(border)
}
func addRightBorderWithColor(color: UIColor, height: CGFloat) {
let border = CALayer()
border.backgroundColor = color.CGColor
border.frame = CGRectMake(self.frame.size.width - height, 0, height, self.frame.size.height)
self.layer.addSublayer(border)
}
func addBottomBorderWithColor(color: UIColor, height: CGFloat) {
let border = CALayer()
border.backgroundColor = color.CGColor
border.frame = CGRectMake(0, self.frame.size.height - height, self.frame.size.width, height)
self.layer.addSublayer(border)
}
func addLeftBorderWithColor(color: UIColor, height: CGFloat) {
let border = CALayer()
border.backgroundColor = color.CGColor
border.frame = CGRectMake(0, 0, height, self.frame.size.height)
self.layer.addSublayer(border)
}
}
答案 0 :(得分:1)
您应该只为UIView
创建扩展程序。
正如其他类(UITextField
,UITextView
,UILabel
,...)扩展UIView
一样,它们都应该可以使用您的函数。
注意:这要求这些功能适用于UIView,并且不包含特定操作(例如,访问UITextView
中仅提供的属性)。
答案 1 :(得分:1)
如果您只想要几个类的扩展,您可以定义协议并在协议中提供默认实现,然后使用新协议扩展类。这是一个可以在游乐场中运行的简单示例:
protocol foo {
func bar() -> String;
}
extension foo {
func bar() -> String {
return "bar"
}
}
extension Float: foo {}
extension Int: foo {}
let i = 12
print(i.bar())
let f:Float = 1.0
print (f.bar())