gpt4 book ai didi

ios7 - 如何更改 UITextView 的光标样式?

转载 作者:行者123 更新时间:2023-12-05 00:57:19 28 4
gpt4 key购买 nike

在 UITextView 中编辑时,我知道如何通过设置 tintColor 来更改光标颜色。有什么原因要将光标更改为另一种样式?

例如:一个闪烁的固定宽度框。或下划线“_”

最佳答案

我找到了一个解决方案:

1.子类化 UITextView

2.覆盖caretRectForPosition:方法

- (CGRect)caretRectForPosition:(UITextPosition *)position
{
CGRect myRect = [super caretRectForPosition:position];
myRect.size.width = 5; // Modify the width of the caret
myRect.size.height = 5; // Modify the height of the caret

return myRect;
}

关于ios7 - 如何更改 UITextView 的光标样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23185223/

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