gpt4 book ai didi

iphone - UITableView 单元格中的图像太大

转载 作者:行者123 更新时间:2023-12-03 19:10:24 25 4
gpt4 key购买 nike

我正在使用:

NSString *thearticleImage = entry.articleImage;
NSRegularExpression *expression = [NSRegularExpression regularExpressionWithPattern:@"(?i)\\b((?:[a-z][\\w-]+:(?:/{1,3}|[a-z0-9%])|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}/)(?:[^\\s()<>]+|\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\))+(?:\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\)|[^\\s`!()\\[\\]{};:'\".,<>?«»“”‘’]))" options:NSRegularExpressionCaseInsensitive error:NULL];
NSString *someString = thearticleImage;
self.theurl = [someString substringWithRange:[expression rangeOfFirstMatchInString:someString options:NSMatchingCompleted range:NSMakeRange(0, [someString length])]];
NSURL *picimage = [NSURL URLWithString:theurl];



NSData * urlData = [NSData dataWithContentsOfURL: picimage];
UIImage * imageweb = [UIImage imageWithData: urlData];

cell.imageView.frame = CGRectMake(0, 0, 70, 70);
cell.imageView.image = imageweb;

问题是这占据了整个单元格,而且我不确定为什么它不仅仅在左侧。

最佳答案

我的表格单元格图像遇到了类似的问题。我使用以下方法来缩放图像:

UIImage *imageOne = [UIImage imageNamed:[imagesArray objectAtIndex:indexPath.row]];

cell.imageView.image = [UIImage imageWithCGImage:imageOne.CGImage scale:imageOne.size.width/40 orientation:imageOne.imageOrientation];

注意:将上面的“40”视为您希望图像的像素宽度的表示。

关于iphone - UITableView 单元格中的图像太大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11199785/

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