gpt4 book ai didi

iphone - 如何在 objective-c 的 View 中加载两个图像?

转载 作者:行者123 更新时间:2023-12-03 17:55:22 25 4
gpt4 key购买 nike

我是 Objective C 和 Xcode 的新手。我发现这段代码允许我从 url 将图像加载到我的设备中,并将其替换为与包含此代码的类关联的 View 中的图像。现在我需要在同一个类中加载两个图像,以替换同一 View 中的两个图像...我该怎么办?

编辑:要清楚:我有一个包含两个 ImageView 的 View 。每个 ImageView 显示应用程序资源中包含的具有特定名称的文件中包含的图像。假设第一个 ImageView 包含“image1.jpg”和第二个“image2.jpg”。我想做的是将设备中的两个图像“image1.jpg”和“image2.jpg”替换为从网络上获取的两个图像(为了最终在应用程序期间完成一些应用程序图像的更新)生活中通过使用 xml 等等)。

- (void)loadImgFromURLString: (NSString *)theUrlString{
NSLog(@"Downloading image...");
backgroundHome.image = nil;

NSURLRequest *request = [NSURLRequest requestWithURL:
[NSURL URLWithString:theUrlString]
cachePolicy:NSURLRequestReturnCacheDataElseLoad
timeoutInterval:30.0];
connection = [[NSURLConnection alloc]
initWithRequest:request delegate:self];
}

- (void)connection:(NSURLConnection *)theConnection
didReceiveData:(NSData *)incrementalData {
if (data == nil)
data = [[NSMutableData alloc] initWithCapacity:2048];

[data appendData:incrementalData];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)theConnection{
backgroundHome.image = [UIImage imageWithData:data];
NSLog(@"Image ready...");

// save image in document dir
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *pngFilePath = [NSString stringWithFormat:@"%@/test.png",docDir];
[data writeToFile:pngFilePath atomically:YES];
}

最佳答案

我想,在您的 View 中添加第二张图像并不是真正的问题?

如果有多个图像,您的任务是将加载的数据分配给适当的图像。

您可以将此代码添加到 UIImageView 的子类中。这样做每个 UIImageView 将创建自己的请求并接收自己的图像数据。最终你将它分配给 self.image = ...

这就是我会做的。

替代方案:您创建一个具有对 UIImageView 的引用的图像加载器类。您创建其中的两个实例。每个实例都“知道”自己的 UIImageView 并发出请求,并最终将图像数据保存到自己的 UIImageView 中。

下一个替代方案(我从未尝试过)

NSMutableDictionary ongoingRequests = [[NSMutableDictionary alloc] init];

- (void)loadImgFromURLString: (NSString *)theUrlString forImageView:(UIImageView)theView {
backgroundHome.image = nil;

NSURLRequest *request = [NSURLRequest requestWithURL:
[NSURL URLWithString:theUrlString]
cachePolicy:NSURLRequestReturnCacheDataElseLoad
timeoutInterval:30.0];
connection = [[NSURLConnection alloc]
initWithRequest:request delegate:self];

[self.ongoingRequests setObject:theView forKey:connection]
}

[...]

- (void)connectionDidFinishLoading:(NSURLConnection *)theConnection{
UIImageView *theView = [self.ongoingRequests objectWithKey:theConnection]
theView.image = [UIImage imageWithData:data];
self.ongoingRequests removeObjectForKey:theConnection;

// save image in document dir
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *pngFilePath = [NSString stringWithFormat:@"%@/test.png",docDir];
[data writeToFile:pngFilePath atomically:YES];
}

关于iphone - 如何在 objective-c 的 View 中加载两个图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14484413/

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