菜鸟教程小白 发表于 2022-12-13 02:50:30

ios - 如何正确使用 DrawRect


                                            <p><p>我目前正在构建自定义 <code>UIActivityIndi​​cator</code>。为此,我创建了以下绘制矩形函数:</p>

<pre><code>-(void) drawRect:(CGRect)rect
{
CGPoint point;
NSLog(@&#34;here %d&#34;,stage);`

CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(ctx, 2.0);

for (int i = 1 ; i&lt;=10; ++i) {


    CGContextSetStrokeColorWithColor(ctx, [ CGColor]);
    point = ;
    CGContextMoveToPoint(ctx, point.x, point.y);
    point = ;
    CGContextAddLineToPoint( ctx, point.x, point.y);
    CGContextStrokePath(ctx);
}



stage++;
}
</code></pre>

<p>我添加了一个 <code>NSTimer</code> 来调用 <code>;</code></p>

<p>动画效果很好,但是当我将它导入到我的应用程序时,每次我滚动表格或做任何事情时,动画都会停止,直到表格停止移动。</p>

<p>我假设只有在 UI 完成更新后才更新我的 DrawRect 但我该如何解决它或以正确的方式进行操作</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您希望在表格 View (或任何其他 ScrollView )滚动时触发计时器,您必须使用不同的运行循环模式手动安排计时器。默认情况下,滚动时不会触发计时器以提高性能。</p>

<pre><code>NSTimer *timer = ;
[ addTimer:timer forMode:NSRunLoopCommonModes];
</code></pre>

<p>(您将使用 <code>NSDefaultRunLoopMode</code> 而不是 <code>NSRunLoopCommonModes</code> 获得默认行为。)</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何正确使用 DrawRect,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16923492/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16923492/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何正确使用 DrawRect