我使用自定义单元格(CustomCell)和子视图(ViewDrawing)来绘制图像。后来我想画得更多。细胞的高度也不同。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return 100;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
float cellHeight = [self tableView:tableView heightForRowAtIndexPath:indexPath];
if (cell == nil) {
cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
[cell.imageView setFrame:CGRectMake(0, 0, cell.frame.size.width, cellHeight)];
if (indexPath.row < 10) {
cell.imageView.image = [UIImage imageNamed:[NSString stringWithFormat:@"FICDDemoImage00%ld.jpg",indexPath.row]];
} else {
cell.imageView.image = [UIImage imageNamed:[NSString stringWithFormat:@"FICDDemoImage0%ld.jpg",indexPath.row]];
}
[cell.imageView setNeedsDisplay];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 20 + indexPath.row * 2;
}
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath {
//rought calculation
return 20 + indexPath.row * 2;
//return UITableViewAutomaticDimension;
}
CustomCell.m(视图的类型为ViewDrawing。它是一个类变量)
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
view = [[ViewDrawing alloc] init];
[self addSubview:view];
}
return self;
}
- (void)awakeFromNib
{
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
- (ViewDrawing *)viewDrawing {
return view;
}
- (void)setViewDrawing:(ViewDrawing *)viewDrawing {
view = viewDrawing;
}
我在ViewDrawing.m中的绘图方法看起来像这样:
- (void)drawRect:(CGRect)rect
{
// Drawing code
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);
CGContextFillRect(context, rect);
[image drawInRect:rect];
}
问题是现在一切正常,但滚动有时不是很流畅。该应用程序使用300mb内存,这是很多的方式!似乎每个单元都被保存在内存中而不是被释放。有谁想法如何减少问题?
编辑:
我将drawRect更改为:
- (void)drawRect:(CGRect)rect
{
// Drawing code
dispatch_queue_t backgroundQueue = dispatch_queue_create("com.Vendor.Draw",NULL);
dispatch_async(backgroundQueue, ^{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);
CGContextFillRect(context, rect);
[image drawInRect:rect];
});
}
我现在使用imageWithContentsOfFile。现在它使用50mb,我觉得好吗?!
答案 0 :(得分:1)
首先:在[image drawInRect:]
中使用drawRect
在主线程上相当昂贵,这应该是您的滚动视图感觉很尴尬的原因。
第二:使用[UIImage imageNamed:]
将图像保存在内存中,这应该是内存消耗上升的原因。如果你使用[UIImage imageWithContentsOfFile:]
,你的内存占用量应该下降,但你的滚动性能甚至可能会变差。
要处理大量大图像,你应该尝试在后台线程中加载和绘制单元格,并在渲染完成后淡入它们。