我想插入 UITextField 文本

这可能吗?

最佳答案

覆盖 -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/6535541/

10-13 03:48