Objective C 页面控制背景颜色

发布于 2024-12-22 01:02:11 字数 189 浏览 2 评论 0原文

我有一个带有页面控件的滚动视图,当我更改她的颜色时,我的页面控件消失。

UIColor *col = [UIColor colorWithRed:14.5 green:35.6 blue:72.9 alpha:1];
        self.pageControl.backgroundColor = col;

I have a scrollview with a pagecontrol, when i change her color, my pagecontrol dissapear.

UIColor *col = [UIColor colorWithRed:14.5 green:35.6 blue:72.9 alpha:1];
        self.pageControl.backgroundColor = col;

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

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

发布评论

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

评论(2

离不开的别离 2024-12-29 01:02:12

RGB 值应介于 0 和 1 之间。(请参阅 文档)。因此,您在这里将背景颜色设置为完全不透明的白色。

The RGB values are supposed to be between 0 and 1. (See the docs). So you're setting the background color to fully opaque white here.

摘星┃星的人 2024-12-29 01:02:12

UIColor *col = [UIColor colorWithRed:14.5 绿色:35.6 蓝色:72.9 alpha:1];

如果 RGB ASCII 值介于 0 到 255 之间,

则可以将其指定为

UIColor *col = [UIColor colorWithRed:(255/255) green:(0/255) blue:(0/255) alpha:1]; // 这代表红色

UIColor *col = [UIColor colorWithRed:14.5 green:35.6 blue:72.9 alpha:1];

If you have the RGB ASCII values 0 to 255

you can specify it as

UIColor *col = [UIColor colorWithRed:(255/255) green:(0/255) blue:(0/255) alpha:1]; // This represent Red color

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