HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 尝试圆形图像,输出菱形?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个奇怪的问题.我正在解析数据并提取图像的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);
@H_801_28@

大佬总结

以上是大佬教程为你收集整理的ios – 尝试圆形图像,输出菱形?全部内容,希望文章能够帮你解决ios – 尝试圆形图像,输出菱形?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。