将 RoundRect 形状边框设置为图像视图

发布于 2024-11-16 18:08:28 字数 303 浏览 2 评论 0原文

我正在使用以下代码将边框设置为 UIImageView

我的代码是:

[imageview.layer setBorderColor: [[UIColor orangeColor] CGColor]];
                [imageview.layer setBorderWidth: 6.0];

它看起来是一个矩形形状的边框。但是,我需要一个 RoundRect 形状作为我的图像视图边框,或者想要 UIImageView 边框边缘的曲线。谁能告诉我一种好方法。

I am using this following code to set a boarder to UIImageView.

my code is:

[imageview.layer setBorderColor: [[UIColor orangeColor] CGColor]];
                [imageview.layer setBorderWidth: 6.0];

It looking a rectangle shape boarder.However I need a RoundRect shape for my image view Boarder or want curves in edges of UIImageView boarder. Can any one tell me a good way to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风月客 2024-11-23 18:08:28

添加以下行:

[imageSubview.layer setCornerRadius:10.0];
[imageSubview.layer setMasksToBounds:YES];

Add Following Lines:

[imageSubview.layer setCornerRadius:10.0];
[imageSubview.layer setMasksToBounds:YES];
心头的小情儿 2024-11-23 18:08:28

您可能还认为 Jeff LaMarche 的 RoundedRectView 类很有用。

http://iphonedevelopment.blogspot.com/2008/11/creating -transparent-uiviews-rounded.html

You may also consider Jeff LaMarche's RoundedRectView class useful.

http://iphonedevelopment.blogspot.com/2008/11/creating-transparent-uiviews-rounded.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文