gpt4 book ai didi

ios - ImageView 中的选择性圆角 - iOS

转载 作者:行者123 更新时间:2023-11-29 02:16:28 27 4
gpt4 key购买 nike

我正在使用 Xcode 版本 6.1.1 和 iOS 8.1 开发我的应用程序,其中我需要根据设计在 ImageView 中设置圆角左上角和右上角。

我之前用过下面的代码,在之前的Xcode版本中都可以正常运行:

UIImageView *locationImage = (UIImageView *)[cell viewWithTag:101];

UIBezierPath *maskPath1;

maskPath1 = [UIBezierPath bezierPathWithRoundedRect:locationImage.bounds
byRoundingCorners:(UIRectCornerTopRight | UIRectCornerTopLeft)
cornerRadii:CGSizeMake(5.0, 5.0)];
CAShapeLayer *maskLayer1 = [[CAShapeLayer alloc] init];
maskLayer1.frame = locationImage.bounds;
maskLayer1.path = maskPath1.CGPath;
locationImage.layer.mask = maskLayer1;

现在我把左上角弄圆了,但不是右上角。我知道代码是正确的,因为如果我将它应用于不受约束的 ImageView ,它会很好地工作,但我需要将项目约束到 View 。我使用自动布局。

图片链接:https://www.dropbox.com/s/orisd8gzbdhsr4z/round-corners.tiff?dl=0

我做错了什么?我怎样才能正确地圆两个角?

提前致谢

*对不起我的英语

最佳答案

@jcmartinac,

您可以使用此解决方案 - how to set cornerRadius for only top-left and top-right corner of a UIView?

在您的代码中应用此代码,我已经测试过,它运行良好。

maskPath1 = (UIImageView *)[self roundCornersOnView: maskPath1 onTopLeft:YES topRight:YES bottomLeft:NO bottomRight:NO radius:20.0];

//使用下面的方法设置圆角半径..

-(UIView *)roundCornersOnView:(UIView *)view onTopLeft:(BOOL)tl topRight:(BOOL)tr bottomLeft:(BOOL)bl bottomRight:(BOOL)br radius:(float)radius {

if (tl || tr || bl || br) {
UIRectCorner corner = 0; //holds the corner
//Determine which corner(s) should be changed
if (tl) {
corner = corner | UIRectCornerTopLeft;
}
if (tr) {
corner = corner | UIRectCornerTopRight;
}
if (bl) {
corner = corner | UIRectCornerBottomLeft;
}
if (br) {
corner = corner | UIRectCornerBottomRight;
}

UIView *roundedView = view;
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:roundedView.bounds byRoundingCorners:corner cornerRadii:CGSizeMake(radius, radius)];
CAShapeLayer *maskLayer = [CAShapeLayer layer];
maskLayer.frame = roundedView.bounds;
maskLayer.path = maskPath.CGPath;
roundedView.layer.mask = maskLayer;
return roundedView;
} else {
return view;
}

}

////////////对于 TableVIew 在 cellForRowAtIndexPath 方法中使用下面的代码/////

- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.Img_thumb=(UIImageView *)[self roundCornersOnView: cell.Img_thumb onTopLeft:YES topRight:YES bottomLeft:NO bottomRight:NO radius:20.0];
}

检查屏幕截图:-> Effect on Table

关于ios - ImageView 中的选择性圆角 - iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28693368/

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