有没有办法在UITextField上调整rightView的位置?我尝试在视图上设置框架(设置为rightView),但它没有改变任何东西。
我想避免制作两个视图,一个作为rightView,另一个作为rightView的子视图,如果可能的话,我会改变子视图的位置。
答案 0 :(得分:25)
右侧叠加视图放置在接收器的rightViewRectForBounds
:方法返回的矩形中。
所以我建议你继承UITextField
并覆盖这个方法,如下所示:
@interface CustomTextField: UITextField
@end
@implementation CustomTextField
// override rightViewRectForBounds method:
- (CGRect)rightViewRectForBounds:(CGRect)bounds{
CGRect rightBounds = CGRectMake(bounds.origin.x + 10, 0, 30, 44);
return rightBounds ;
}
答案 1 :(得分:3)
@Puneet Sharma的答案很棒但是这需要创建一个子类UITextField
的类,而我所做的却是创建一个充当填充的UIView。
我的代码无需子类
即可运行
这是我的代码,虽然它是用 Swift 3
编写的// this is the view I want to see on the rightView
let checkImageView = UIImageView(image: UIImage(named: "check24.png"))
checkImageView.frame = CGRect(x: 0, y: 0, width: 24, height: 24)
checkImageView.curveEdges(12)
checkImageView.contentMode = .scaleAspectFit
// declare how much padding I want to have
let padding: CGFloat = 6
// create the view that would act as the padding
let rightView = UIView(frame: CGRect(
x: 0, y: 0, // keep this as 0, 0
width: checkImageView.frame.width + padding, // add the padding
height: checkImageView.frame.height))
rightView.addSubview(checkImageView)
// set the rightView UIView as the textField's rightView
self.textField.rightViewMode = .whileEditing
self.textField.rightView = rightView
这里发生的事情是,rightView
是一个UIView
,它具有透明的彩色背景,然后产生了一种幻觉,即没有填充物。
答案 2 :(得分:0)
右填充可以用作
let imageview = UIImageView(image: UIImage(named: "image name"))
imageview.contentMode = .center
let rightPadding: CGFloat = 14 //--- change right padding
imageview.frame = CGRect(x: 0, y: 0, width: imageview.frame.size.width + rightPadding , height:imageview.frame.size.height)
textField.rightViewMode = .always
textFieldd.rightView = imageview