Objective C 页面控制背景颜色
我有一个带有页面控件的滚动视图,当我更改她的颜色时,我的页面控件消失。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
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