0

我尝试使用此代码在按钮图像中设置 alpha 值:

UIImageView *imageTopView = [[UIImageView alloc] initWithImage:
  [UIImage imageNamed:@"Top_80.png"]];    
imageTopView.alpha = 0.5;

topBtn = [UIButton buttonWithType:UIButtonTypeCustom];

[topBtn addTarget:self action:@selector(btnRotatingObj:) 
        forControlEvents:UIControlEventTouchUpInside];

[topBtn setImage: imageTopView.image forState:UIControlStateNormal];   
    [topBtn setTitle:@"TOP" forState:UIControlStateNormal];

[self.view addSubview:topBtn];

它不工作......

4

1 回答 1

0

您正在使用图像视图的图像设置按钮的图像。您的图像视图的 alpha 为 0.5,但当然不是您的图像。

相反,将图像视图添加为按钮的子视图:

[topBtn addSubView:imageTopView];
于 2013-07-26T14:06:02.667 回答