菜鸟教程小白 发表于 2022-12-13 00:49:05

ios - UILabel 的文本在延迟后加载


                                            <p><p>在我的代码中我称之为</p>

<pre><code>[request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
    if (responseData != nil) {
      NSError *error = nil;
      NSArray *dataSource = ;
      ;
    } else {
      NSLog(@&#34;Error requesting timeline %@ with user info %@.&#34;, error, error.userInfo);
    }
}];
</code></pre>

<p>在 <code>loadData:</code> 方法中我这样做</p>

<pre><code>NSDictionary *dict = ;

_label.text = ;

dispatch_queue_t queue = dispatch_queue_create(&#34;com.test.ios.task&#34;, NULL);
dispatch_queue_t main = dispatch_get_main_queue();

dispatch_async(queue, ^{
    NSURL *imageURL = objectForKey:@&#34;profile_image_url&#34;]];
    NSData *imageData = ;

    dispatch_async(main, ^{
      _image.image = ;
    });
});

dispatch_release(queue);
</code></pre>

<p>问题是我在主队列加载的图像比设置的 <code>_label.text</code> 快得多。它在大约 4-5 秒的长时间延迟后被设置。我想知道为什么会这样。是因为 <code>main queue</code> 没有被释放还是因为那几行?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我无法从您的代码中看出请求的处理程序 block 正在哪个线程上被调用,但如果它不是主线程,那可能就是问题所在。</p>

<p>尝试从内部设置标签的文本属性</p>

<pre><code>dispatch_async(main, ^{
    _label.text = ;
});
</code></pre>

<p>阻止。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UILabel 的文本在延迟后加载,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14697182/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14697182/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UILabel 的文本在延迟后加载