当我加载页面时,正常请检查图像
当我点击一行时,相应的图像会以不同的大小显示,请检查下面的图像(当我点击第1行和第2行时)
请帮我解决这个问题。这里使用SDWebImage从网址延迟加载图片。
我的代码:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1; //count of section
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [names count]; //count number of row from counting array hear cataGorry is An Array
}
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *MyIdentifier = @"service";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:MyIdentifier]
;
}
// Here we use the provided setImageWithURL: method to load the web image
// Ensure you use a placeholder image otherwise cells will be initialized with no image
// cell.imageView.frame=CGRectMake(5,10,50,60);
cell.imageView.layer.cornerRadius=8.0;
cell.imageView.clipsToBounds=YES;
cell.imageView.autoresizingMask=UIViewAutoresizingFlexibleHeight;
[cell.imageView setImageWithURL:[NSURL URLWithString:[imaages objectAtIndex:indexPath.row]]placeholderImage:[UIImage imageNamed:@"Placeholder.png"]];
cell.textLabel.text = [names objectAtIndex:indexPath.row];
cell.backgroundColor=[UIColor clearColor];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 80;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
}
答案 0 :(得分:0)
将图像剪辑到子视图,并向其添加autolayout。
[cell.contentView.superview setClipsToBounds:YES];
对于自定义单元格,请选择您的图片和
答案 1 :(得分:0)
如果在完成加载后重新加载tableview,图像将获得它所假设的大小
[self.tableview reloadData];