有没有办法调整UITextField上rightView的位置?我尝试在视图上设置框架(设置为rightView),但它没有改变任何东西.
我想避免制作两个视图,一个是rightView,另一个是rightView的子视图,如果可能的话,我会更改子视图的位置.
解决方法
右侧叠加视图放置在接收器的rightViewRectForBounds:方法返回的矩形中.
所以我建议你继承UITextField并重写这个方法,如下所示:
@interface CustomTextField: UITextField @end @implementation CustomTextField // override rightViewRectForBounds method: - (CGRect)rightViewRectForBounds:(CGRect)bounds{ CGRect rightBounds = CGRectMake(bounds.origin.x + 10,30,44); return rightBounds ; }