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

ios - 在 UITableViewCell 上创建水平渐变


                                            <p><p>好的,我可以在 UITableViewCell 上对其类进行垂直渐变:</p>

<pre><code>UIView *backgroundView = [ init];

CAGradientLayer *gradient = ;
gradient.frame = self.bounds;

gradient.colors = CGColor],
                     (id)[ CGColor], nil];

;

;
</code></pre>

<p>但是从左到右的<strong>水平</strong>渐变呢?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>简单的文档检查:</p>

<p><code>CAGradientLayer</code> 具有 <code>startPoint</code> 和 <code>endPoint</code> 属性。我假设您可以使用这些来定位渐变。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 UITableViewCell 上创建水平渐变,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24068813/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24068813/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 UITableViewCell 上创建水平渐变