如何使用cocoa touch创建圆角透明矩形?

发布于 2024-09-05 01:26:17 字数 435 浏览 4 评论 0原文

我需要创建一个圆角矩形框,其中 iPhone 应用程序中有 6 个按钮。并且矩形盒子是透明的。每个按钮都有图像和文本。而且它们也是透明的。 (这里透明意味着我们可以看到盒子的背景图像。抱歉我的词汇量。)

我不知道如何启动它。我想到了以下一个,但是,

通过使用核心图形绘制外部圆角矩形,然后绘制内部矩形(如 2x3 网格)。

我可以用这个做吗?还有比这更好、更简单的方法吗?请给我一些想法如何重新开始?

我得到了圆角矩形。现在我需要在其中画线将其分为 6 部分。 我用过 链接文本 如何获得矩形上下文来绘制线条?

谢谢。

I need to create a rounded rectangular box in which there will be 6 buttons in iPhone application. And the rectangular box is transparent. Each button have an image and text. And they are also transparent. ( Here transparent means we can see the background image of the box. Sorry for my vocabulary.)

I could not get how to start it. I thought of the following one but,

By using core graphics draw the outside rounded rectangle and then draw inside rectangles like 2x3 grid.

Can I make with this ? Are there any good and easy methods than this. Please give me some idea how to start over with ?

I got the rounded rectangle. Now I need to draw the lines in them to divide it into 6 parts.
I used
link text
How can I get the rectangle context to draw lines ?

Thank you.

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

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

发布评论

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

评论(1

家住魔仙堡 2024-09-12 01:26:17

如果您的需求足够简单,您可以使用 CALayer 属性。

someView.layer.cornerRadius = 10;
someView.layer.borderColor = [[UIColor redColor] CGColor];
someView.layer.backgroundColor = [[UIColor greenColor] CGColor];
someView.layer.opacity = 0.5;

不透明度相当于 UIView alpha。

If your needs are simple enough you can use CALayer properties.

someView.layer.cornerRadius = 10;
someView.layer.borderColor = [[UIColor redColor] CGColor];
someView.layer.backgroundColor = [[UIColor greenColor] CGColor];
someView.layer.opacity = 0.5;

opacity is equivalent to UIView alpha.

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