菜鸟教程小白 发表于 2022-12-13 10:19:11

ios - 以编程方式创建 UIButton,但没有点击效果(仅限文本效果)


                                            <p><p>我创建了一个这样的按钮,但是当我点击它时没有任何变化。</p>

<pre><code>    UIButton *button = [ init];
    button.translatesAutoresizingMaskIntoConstraints = NO;
    ;
    forState: UIControlStateNormal];
</code></pre>

<p>我不会使用两张图片,我只是想让文字稍微改变一下。就像一个新的按钮被拖到 UIViewController。</p>

<p>我错过了什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>点击按钮时必须设置标题和标题颜色。</p>

<pre><code> ;
forState: UIControlStateHighlighted];
</code></pre>

<p>见 <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIControl_Class/index.html#//apple_ref/doc/constant_group/Control_State" rel="noreferrer noopener nofollow">UIControl Class Reference</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 以编程方式创建 UIButton,但没有点击效果(仅限文本效果),我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28659700/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28659700/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 以编程方式创建 UIButton,但没有点击效果(仅限文本效果)