菜鸟教程小白 发表于 2022-12-12 15:21:44

ios - 当按钮被选中时,使色调颜色填充框架


                                            <p><p>当一个 <code>UIButton</code> 被选中时,我怎样才能让它选择它的全帧?这就是我的意思:</p>

<p> <img src="/image/clGod.jpg" alt="enter image description here"/> </p>

<p>所以橙色是 <code>UIButtons</code> 框架,蓝色是它被选中的时候。我怎样才能让蓝色填满整个框架? (所以你不会看到橙色。)</p>

<p><strong>更新</strong></p>

<p> <img src="/image/ZewrO.jpg" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我假设橙色是 <code>UIButton</code> 的 <em>superview</em> 并且 <em>superview</em> 是您想要的色调应用于。如果是这种情况,那么我会向按钮添加一个目标,以更改 superView 的 <code>backgroundColor</code> 以匹配按钮的 <code>tintColor</code>。像这样的东西应该可以工作:</p>

<pre><code>[myButton addTarget:self
             action:@selector(setButtonSuperviewToTintColor:)
   forControlEvents:UIControlEventTouchUpInside];
</code></pre>

<p>然后在 Controller 的其他地方添加:</p>

<pre><code>- (void)setButtonSuperviewToTintColor:(UIButton *)sender {
    sender.superview.backgroundColor = sender.tintColor;
}
</code></pre>

<p>如果 superView <em>不是</em>您想要调整的,那么创建一个方法将<code>UIButton</code>的背景颜色更改为它的色调。</p>

<pre><code>[myButton addTarget:self
             action:@selector(setButtonBackgroundColorToTintColor:)
   forControlEvents:UIControlEventTouchUpInside];
</code></pre>

<p>和其他地方:</p>

<pre><code>- (void)setButtonBackgroundColorToTintColor:(UIButton *)sender {
    sender.backgroundColor = sender.tintColor;
}
</code></pre>

<p>但是,如果您只是希望它成为 <code>selected</code> 颜色,那么已经有一种方法可以做到这一点。不幸的是,它被设计用于处理图像。但是,从图像中制作颜色很容易。所以,这应该适合你:</p>

<pre><code>CGRect rect = CGRectMake(0, 0, 1, 1);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context,
                               [ CGColor]);
CGContextFillRect(context, rect);
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 当按钮被选中时,使色调颜色填充框架,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30465327/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30465327/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 当按钮被选中时,使色调颜色填充框架