gpt4 book ai didi

ios - UIButton 不会更改 touchUpInside 上的背景

转载 作者:行者123 更新时间:2023-11-29 03:26:11 25 4
gpt4 key购买 nike

我将一些自定义类型的 UIButtons 实用地放置在自定义 View 中。 View 基本上是一个菜单。我在 View 的 .m 文件中使用以下代码生成按钮:

-(void) generateButtons: (NSMutableArray *) buttonsArray
{
UIImage *barItemImage = [[UIImage imageNamed:@"ipad-menubar-button.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 5, 0, 5)];

float buttonWidth = (self.frame.size.width - (2 * FIRSTBUTTONXCOORDINATE) - 25)/ 6.0f;
float xCoord = FIRSTBUTTONXCOORDINATE;
float yCoord = (self.frame.size.height - BUTTONHEIGHT) / 2.0f;
for (int i = 0; i < buttonsArray.count; i++)
{
NSString* buttonTitle = [buttonsArray objectAtIndex:i];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button addTarget:self
action:@selector(botButtonAction:)
forControlEvents:UIControlEventTouchUpInside];

[button setTitle:buttonTitle forState:UIControlStateNormal];
button.frame = CGRectMake(xCoord, yCoord, buttonWidth, BUTTONHEIGHT);
button.tag = i;
[button setBackgroundImage:barItemImage forState:UIControlStateNormal];
xCoord += buttonWidth + 5;
[self addSubview:button];
}
}

在 touchUpInside 上,botButtonAction 被调用并且它执行它应该做的事情。但是,这些按钮通常不会提供任何关于 touchUpInside 的视觉指示。当我在按钮上 touchDown 并向任意方向滑动时,我看到背景颜色变暗了。有时,我会在 touchUpInside 上看到相同的视觉指示。不过,这似乎完全是随机的。

关于我在这里可能做错了什么有什么想法吗?

编辑:抱歉,我忙于其他问题。这是 botButtonAction 的代码及其调用的方法

-(void) botButtonAction: (UIButton *) sender
{
if (self.delegate)
[self.delegate optionsMenuAction:self data:sender.tag];
}

-(void)optionsMenuAction:(OptionsMenueView *)view data:(int)tag
{
if (self.PDFVC)
{
[self.navigationController popToViewController:self animated:YES];
}

if (!self.optionsMenue.isAtWPC || tag != WPC)
[self transitionFromViewAtIndex:self.selectedVCIndex toView:tag];

else
[self transitionFromViewAtIndex:self.selectedVCIndex toView:WPList];
}

但是由于我使用的是 touchUpInside,因此不会在 touchDown 时调用这些方法。我只希望按钮在触碰时高亮显示(将 bg 稍微变灰)。正如我之前所说,这发生在触摸和滑动时。

编辑到目前为止,我一直在实际设备(iPad air 和 iPad 2)上运行它。当我尝试在模拟器上运行它时,我得到了正确的结果。单击鼠标时,按钮会突出显示。

编辑我想我找到了确切的问题(仍在寻找解决方案)。如果我精确地按下按钮并且触摸没有覆盖插图的任何部分,那么突出显示有效。但是,如果触摸覆盖了按钮的一部分以及插入/外部的一部分,则突出显示不起作用。

最佳答案

添加这一行:

[button setBackgroundImage:HighlightImage forState:UIControlStateHighlighted];

关于ios - UIButton 不会更改 touchUpInside 上的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20436866/

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