以编程方式为视图创建背景渐变?如何?

发布于 2024-10-17 01:19:06 字数 120 浏览 2 评论 0原文

我有一个小视图,上面有几个按钮。我想使这个小视图背景成为与您将 UINavigation 栏设置为黑色不透明时的渐变相同的黑色渐变?

这可以通过编程实现吗?还是我需要尽力在 Photoshop 中复制它? :)

I have a small view with a few buttons on it. I want to make this small views background a black gradient identical to the gradient when you set your UINavigation bar to Black Opaque?

Is this possible programmatically or do I need to try my best at Photoshop to copy it? :)

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

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

发布评论

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

评论(1

月亮邮递员 2024-10-24 01:19:06

简单地覆盖 UIView 的 drawRect 消息并绘制背景:

- (void)drawRect:(CGRect)rect
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    GContextDrawLinearGradient(context, self.gradientLayer, CGPointMake(0.0, 0.0),
                            CGPointMake(0.0, self.frame.size.height), kCGGradientDrawsBeforeStartLocation);
}

要创建和缓存渐变,请使用此代码片段(您应该使用自己的颜色组件)。

- (CGGradientRef)gradientLayer
{
    if (_gradientLayer == nil)
    {
        CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); 
        CGFloat locations[] = { 0.0, 1.0 };
        CGFloat colors[] = { 0.0 / 255.0, 0.0 / 255.0, 48.0 / 255.0, 1.00, 26.0 / 255.0, 48.0 / 255.0, 89.0 / 255.0, 1.00 };

        _gradientLayer = CGGradientCreateWithColorComponents(colorSpace, colors, locations, sizeof(colors) / (sizeof(colors[0]) * 4));
        CGColorSpaceRelease(colorSpace);
    }
    return _gradientLayer;
}

当然,不要忘记将渐变释放到 dealloc 中。

Simple override drawRect message for UIView and draw background:

- (void)drawRect:(CGRect)rect
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    GContextDrawLinearGradient(context, self.gradientLayer, CGPointMake(0.0, 0.0),
                            CGPointMake(0.0, self.frame.size.height), kCGGradientDrawsBeforeStartLocation);
}

For creating and caching gradient use this snippet (color components you should use your own).

- (CGGradientRef)gradientLayer
{
    if (_gradientLayer == nil)
    {
        CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); 
        CGFloat locations[] = { 0.0, 1.0 };
        CGFloat colors[] = { 0.0 / 255.0, 0.0 / 255.0, 48.0 / 255.0, 1.00, 26.0 / 255.0, 48.0 / 255.0, 89.0 / 255.0, 1.00 };

        _gradientLayer = CGGradientCreateWithColorComponents(colorSpace, colors, locations, sizeof(colors) / (sizeof(colors[0]) * 4));
        CGColorSpaceRelease(colorSpace);
    }
    return _gradientLayer;
}

And of course don't forget release your gradient into dealloc.

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