gpt4 book ai didi

ios - rightView UITextField 的位置

转载 作者:可可西里 更新时间:2023-11-01 03:03:24 26 4
gpt4 key购买 nike

有没有办法调整 rightView 在 UITextField 上的位置?我尝试在 View 上设置框架(设置为 rightView),但没有任何改变。

我想避免制作两个 View ,一个作为 rightView,另一个作为 rightView 的 subview ,如果可能的话,我会在其中更改 subview 的位置。

最佳答案

右叠加 View 放置在 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 ;
}

关于ios - rightView UITextField 的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18371053/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com