菜鸟教程小白 发表于 2022-12-13 04:02:38

ios - 通过 LongPress 更改 UITextField 背景颜色


                                            <p><p>All Boxes 是 <code>UITextField</code>s。我想在用户长按 <code>UITextField</code> 时更改背景颜色。<br/>
哪个 TextField 长按 UITextField 颜色是变化的,不是所有的 <code>UITextField</code>s。</p>

<p> <img src="/image/E1kAV.png" alt="In My View "/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试这样使用...</p>

<pre><code>- (void)viewDidLoad
{
    ;
    UILongPressGestureRecognizer *gs = [initWithTarget:self action:@selector(changeBackground:)];
    ;
}

- (void)changeBackground:(UIGestureRecognizer *)gs
{
   ; // Edited

   UITextField *txtFld = (UITextField *)gs.view;

   ];
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 通过 LongPress 更改 UITextField 背景颜色,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18672739/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18672739/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 通过 LongPress 更改 UITextField 背景颜色