我有一个位于ontop上的UIButton,是我UITabBar的子视图。但按钮仍然有点透明,我可以看到标签栏中的线条。我的按钮创建如下:
_button = [UIButton buttonWithType:UIButtonTypeCustom];
[_button setTitle:@"+" forState:UIControlStateNormal];
[_button.titleLabel setFont:[UIFont fontWithName:@"HelveticaNeue-Light" size:(46.0)]];
[_button setBackgroundColor:[UIColor yellowColor]];
[_button setTintColor:[UIColor regularColor]];
[_button setAlpha:1.0];
怎么了?
答案 0 :(得分:0)
[_button setAlpha:1.0];
使用setAlpha属性
答案 1 :(得分:0)
我假设您的按钮是在故事板中创建的。因此,如果您尝试不使用“_button = [UIButton buttonWithType:UIButtonTypeCustom];
”行,则它不应该是透明的...