gpt4 book ai didi

ios - 绘图不会随 drawRect 中的文本滚动

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:41:13 25 4
gpt4 key购买 nike

作为 iOS 编程的新手,如果这个问题听起来很愚蠢,我很抱歉。我画了一些矩形来标记 UITextView 中的一些文本。唯一的问题是矩形不会随文本滚动。他们只是呆在那里。这是代码:

- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self setContentMode:UIViewContentModeRedraw];
}
return self;
}

- (void)drawRect:(CGRect)rect {

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 1.0);
CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);
CGRect rectangle = CGRectMake(0,3.5*self.font.lineHeight,self.frame.size.width,self.font.lineHeight);
CGContextAddRect(context, rectangle);
CGContextStrokePath(context);
}

感谢您的帮助。

感谢格雷格的回答。我做了一些测试,下面的代码起到了作用。请注意,上面的代码在 textView.m 中,但以下代码在 ViewController.m 中:

- (void)viewDidLoad
{
//other inits....
[textView setDelegate:self];
}
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
[textView setNeedsDisplay];
}

最佳答案

UITextView 是 UIScrollView 的子类。您必须检测 ScrollView 何时开始滚动,然后动态更新矩形的位置。您可以通过在子类上实现 scrollViewDidScroll: 方法并跟踪/更新矩形的位置来做到这一点

关于ios - 绘图不会随 drawRect 中的文本滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18222076/

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