菜鸟教程小白 发表于 2022-12-13 05:26:44

ios - 绘制背景颜色和边框和背景 PNG


                                            <p><p>我希望我的 iPad 应用程序的大多数按钮都使用特定的 RGB 十六进制颜色。</p>

<p>我所做的是:
我在我的项目中实现了 <code>UIButton</code> 子类,它模拟按钮所需的背景颜色、文本颜色和边框 - 然后我在项目中需要 <code>UIButton</code> 的任何地方都使用它。 </p>

<p>我的 UI/UX 设计师不提供 PNG,而是坚持让我模仿与 Hex 代码相同的颜色网站按钮。我更喜欢背景 PNG。</p>

<p>现在,您可能想知道这个问题与编程的关系是,我正在访问子类中的 <code>.layer.borderWidth</code> 和 <code>.layer.borderColor</code> 属性,最终得到无处不在。</p>

<p>那么,这种方法对应用程序有什么好处,而不是使用背景 PNG?</p>

<p><strong>注意</strong> <em>(如果相关)</em>:所有按钮的大小相同。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以自己从颜色中制作 UIImage 并设置你的按钮图像:</p>

<pre><code>+ (UIImage *)imageFromColor:(UIColor *)color {
    CGRect rect = CGRectMake(0, 0, 1, 1);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, );
    CGContextFillRect(context, rect);
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}
</code></pre>

<p>您还需要 <a href="https://stackoverflow.com/questions/3805177/how-to-convert-hex-rgb-color-codes-to-uicolor" rel="noreferrer noopener nofollow">convert HEX RGB color codes to UIColor</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 绘制背景颜色和边框和背景 PNG,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28623154/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28623154/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 绘制背景颜色和边框和背景 PNG