当前位置 : 主页 > 手机开发 > ios >

ios – 尝试圆形图像,输出菱形?

来源:互联网 收集:自由互联 发布时间:2021-06-11
我有一个奇怪的问题.我正在解析数据并提取图像的URL,然后将其设置为单元格的“imageView”.根据我的理解,我应该将’cornerRadius’的大小设置为图像高度的一半.因为我将数据拉入高度为
我有一个奇怪的问题.我正在解析数据并提取图像的URL,然后将其设置为单元格的“imageView”.根据我的理解,我应该将’cornerRadius’的大小设置为图像高度的一半.因为我将数据拉入高度为100的表格视图单元格中,所以我将角半径设置为50.

然而,当视图加载到图像的第一个初始载荷上时,它们就像小钻石一样出现.当我旋转设备(也旋转表格视图)时,它会自动恢复全尺寸图像,也具有圆度.

这是初始加载的示例图像,

有人知道为什么会这样吗?

这是我的tableView代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    NSDictionary *generatedUsers = [self.randomlyGeneratedUsersArray objectAtIndex:indexPath.row];
    NSURL *url = [NSURL URLWithString:[generatedUsers valueForKeyPath:@"user.picture"]];
    cell.textLabel.text = [NSString stringWithFormat:@"%@ %@", [generatedUsers valueForKeyPath:@"user.name.first"], [generatedUsers valueForKeyPath:@"user.name.last"]];
    cell.detailTextLabel.text = [generatedUsers valueForKeyPath:@"user.location.street"];
    [cell.imageView setImageWithURL:url placeholderImage:[UIImage imageNamed:@"placeholder"]];

    cell.imageView.layer.cornerRadius = 50.0f;
    cell.imageView.layer.masksToBounds = YES;

    return cell;
}
你确定自动布局之类的东西在运行时没有改变你的imageView高度吗?
尝试设置角半径,如下所示:

cell.imageView.layer.corderRadius = (cell.imageView.bounds.size.height /2);
//And to try figure out what's going on...
NSLog(@"Cell imageview height: %f",cell.imageView.bounds.size.height);
网友评论