ios – rightView UITextField的位置

前端之家收集整理的这篇文章主要介绍了ios – rightView UITextField的位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法调整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 ;
}
原文链接:https://www.f2er.com/iOS/333225.html

猜你在找的iOS相关文章