gpt4 book ai didi

iphone - 显示自定义 UIButton 上的灰色叠加层

转载 作者:行者123 更新时间:2023-12-01 17:43:28 26 4
gpt4 key购买 nike

我为 iOS 4.3+ 应用程序创建了一个自定义 UIButton。我想让背景图片拉伸(stretch),所以我使用了以下方法来设置它的背景图片:

[myButton setBackgroundImage:[[UIImage imageNamed:myImagePath]  stretchableImageWithLeftCapWidth:leftStretchValue topCapHeight:topStretchValue] forState:UIControlStateNormal]
[myButton setBackgroundImage:[[UIImage imageNamed:myHighlightedImagePath] stretchableImageWithLeftCapWidth:eftStretchValue topCapHeight:topStretchValue] forState:UIControlStateHighlighted]
[myButton setBackgroundImage:[[UIImage imageNamed:mySelectedImagePath]
stretchableImageWithLeftCapWidth:eftStretchValue topCapHeight:topStretchValue] forState:UIControlStateSelected]

我已将事件处理程序添加到自定义按钮
[myButton addTarget:self action:@selector(buttonHighlighted:) forControlEvents:UIControlEventTouchDown];

[myButton addTarget:self action:@selector(buttonSelected:) forControlEvents:UIControlEventTouchUpInside];

在上面提到的方法中,我已经相应地设置了按钮的选中状态和高亮状态。我更改了 UIButton 的框架以调整不规则图像的尺寸(mySelectedImage 和 myHighlightedImage,它们都不是矩形),以便它与 myImage 正确对齐。
- (void) buttonSelected {
myButton.selected = !myButton.selected; //setting the selected property to NO in the viewDidLoad

//code to change the frame of the UIButton to accomodate the irregular image
}


- (void) buttonHighlighted {
myButton.highlighted = YES;
}

我面临的问题是,当我选择 myButton 时,myImage 上会在很短的时间内显示灰色叠加层,然后将图像 myHighlightedImage 和 mySelectedImage 显示为其背景。我已将 myButton 的背景颜色设置为 clearColor,认为这可能是原因,但它没有得到解决。

可能是什么问题...?

最佳答案

button.adjustsImageWhenHighlighted = NO;

我想这就是你要找的..

关于iphone - 显示自定义 UIButton 上的灰色叠加层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12841476/

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