gpt4 book ai didi

ios - UITextField 的文本插入?

转载 作者:IT王子 更新时间:2023-10-29 07:24:32 26 4
gpt4 key购买 nike

我想插入UITextFieldtext

这可能吗?

最佳答案

重写 -textRectForBounds: 只会更改占位符文本的插入。要更改可编辑文本的插入,您还需要覆盖 -editingRectForBounds:

// placeholder position
- (CGRect)textRectForBounds:(CGRect)bounds {
return CGRectInset(bounds, 10, 10);
}

// text position
- (CGRect)editingRectForBounds:(CGRect)bounds {
return CGRectInset(bounds, 10, 10);
}

关于ios - UITextField 的文本插入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2694411/

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