圆角到UITextField Xcode
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了圆角到UITextField Xcode相关的知识,希望对你有一定的参考价值。
我有两个文本字段(用户名和密码),并希望为用户名制作顶部圆角,并根据附件制作密码的底部圆角。
答案
只需创建一个UIView
。
把你的两个文本字段放在UIView
中。删除UITextField
的边框样式。
yourView.layer.cornerRadius = 10.0
yourView.clipsToBounds = true
另一答案
请按照以下步骤操作
第1步:在您的类中导入QuartzCore框架:
#import <QuartzCore/QuartzCore.h>
第2步:应用编码
textField.layer.cornerRadius=6.0f;
textField.layer.masksToBounds=YES;
textField.layer.borderColor=[[UIColor blueColor]CGColor];
textField.layer.borderWidth= 1.0f;
or
[textField.layer setBorderColor:[[UIColor blueColor] CGColor]];
[textField.layer setBorderWidth:2.o];
[textField.layer setCornerRadius:5.0];
另一答案
您可以使用:
(UIBezierPath *)bezierPathWithRoundedRect:(CGRect)rect byRoundingCorners:(UIRectCorner)corners cornerRadii:(CGSize)cornerRadii
例:
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:textField.bounds byRoundingCorners:(UIRectCornerBottomLeft | UIRectCornerBottomRight) cornerRadii:CGSizeMake(10.0, 10.0)];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = self.view.bounds;
maskLayer.path = maskPath.CGPath;
textField.layer.mask = maskLayer;
另一答案
我想你应该写CALayer扩展。 Swift 3.x - 4.x
extension CALayer {
func addRadius(_ corners: UIRectCorner, radius: CGFloat, view: UIView) {
let mask = CAShapeLayer()
mask.bounds = view.frame
mask.position = view.center
mask.path = UIBezierPath(roundedRect: view.bounds, byRoundingCorners: corners, cornerRadii: CGSize(width: radius, height: radius)).cgPath
view.layer.mask = mask
}
func addRadius(radius: CGFloat) {
self.cornerRadius = radius
}
}
用于
class ViewController: UIViewController {
@IBOutlet var messageTextField: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
messageTextField.layer.addRadius(radius: 8.0)
}
}
希望你的帮助:)
另一答案
这是一个完整的代码示例:
导入UIKit
class RoundedTextField: UITextField {
override func awakeFromNib() {
self.layer.cornerRadius = 10.0 //self.frame.size.height/2
self.clipsToBounds = false
super.awakeFromNib()
}
}
以上是关于圆角到UITextField Xcode的主要内容,如果未能解决你的问题,请参考以下文章
ViewDidLoad 中 UITextField 的圆角只影响左角