将 RoundRect 形状边框设置为图像视图
我正在使用以下代码将边框设置为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加以下行:
Add Following Lines:
您可能还认为 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