菜鸟教程小白 发表于 2022-12-13 06:54:45

iphone - 如何获得有关 imageWithContentsOfFile : completion? 的通知


                                            <p><p>我用 imageWithContentsOfFile: 加载了一个巨大的图像,所以我必须在这个过程中设置一个 activityIndi​​cator。</p>

<p>有没有什么方法/任何委托(delegate)回调可以用来通知这个加载过程的结束?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>imageWithContentsOfFile</code> 是同步的。</p>

<p>您可以启动一个事件指示器,在后台线程中将大图像加载到内存中,然后返回主线程并停止指示器。</p>

<pre><code>- (void)loadBigImage {
    ;
    ;
}

- (void)loadBigImageInBackground {
    NSAutoreleasePool *pool = [ init];
    UIImage *img = ;
    ;
    ;
}

- (void)bigImageLoaded:(UIImage *)img {
    ;
    // do stuff
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何获得有关 imageWithContentsOfFile : completion? 的通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5379213/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5379213/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何获得有关 imageWithContentsOfFile : completion? 的通知