gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:45:52 25 4
gpt4 key购买 nike

All Boxes 是 UITextField。我想在用户长按 UITextField 时更改背景颜色。
长按哪个TextField UITextField颜色变了,不是所有的UITextField

In My View

最佳答案

尝试这样使用...

- (void)viewDidLoad
{
[super viewDidLoad];
UILongPressGestureRecognizer *gs = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(changeBackground:)];
[textFld addGestureRecognizer:gs];
}

- (void)changeBackground:(UIGestureRecognizer *)gs
{
[self.view endEditing:YES]; // Edited

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

[txtFld setBackgroundColor:[UIColor redColor]];
}

关于ios - 通过 LongPress 更改 UITextField 背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18672739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com