Monotouch:BarItem 徽章色调颜色?

发布于 2024-12-23 07:57:43 字数 58 浏览 0 评论 0原文

当我设置徽章值时,它是红色背景白色字体。

是否可以将徽章的背景颜色更改为例如。蓝色的?

When I set the badge value, it's red background with white font.

Is it possible to change the background color of the badge to eg. blue?

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

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

发布评论

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

评论(1

熊抱啵儿 2024-12-30 07:57:43

我最近不得不这样做,但没有内置的方法。

但实际上,编写自己的控件并不难:

  • 让图形设计师为您制作 3 个图像:左侧、右侧和一个 1 像素宽的图像,您可以拉伸以获得更大的数字
  • 创建一个新控件并从 UIView 继承
  • 使用 UILabel每张图片三个 UIImageView

唯一稍微困难的部分是测量居中文本的长度。

自己动手,让您完全按照您的需要进行制作。我暴露了一个int? Value 属性使得在我的应用程序以及 ValueChanged 事件中使用变得非常容易。

I had to do this recently and there isn't a built-in way.

But really, it's not that hard to write your own:

  • Have a graphic designer make you 3 images: left side, right side, and a 1 pixel wide image you can stretch for larger numbers
  • Make a new control and inherit from UIView
  • Use a UILabel and three UIImageViews for each picture

The only slightly difficult part is going to be measuring the length of the text for centering.

Rolling your own let's you make it exactly how you need. I exposed a int? Value property that made extremely easy to use from within my apps as well as a ValueChanged event.

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