gpt4 book ai didi

ios - 如何将ui图像复制到另一个变量?

转载 作者:行者123 更新时间:2023-11-29 02:39:48 26 4
gpt4 key购买 nike

我想将 uiimage 设置为函数范围之外的变量。我尝试了下面的代码,但它不起作用。下面的代码用于自定义 uitable View 单元格类。所以我不能分配和初始化它。因为这将导致每次显示/滚动单元格时对其进行初始化

 uiimage *img;
[manager downloadWithURL:[NSURL URLWithString:friendData.picUrl] options:SDWebImageRefreshCached progress:^(NSInteger receivedSize, NSInteger expectedSize) {

} completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished) {

img =image; ////this is not working !!



}];


dispatch_async(dispatch_get_main_queue(), ^{


[cell.profileImage setImage:img]; //and off course this wont work too

});

最佳答案

我认为你可能只需要设置__block UIImage image = nil;

关于ios - 如何将ui图像复制到另一个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25927005/

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