IOS UIButton 文字不全,被压缩了。比如"P..y"
相关代码如下:UIButton*button=[UIButtonbuttonWithType:UIButtonTypeRoundedRect];[buttonsetTit...
相关代码如下:
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:NSLocalizedString(@"PLAY", nil) forState:UIControlStateNormal];
button.titleLabel.font = [UIFont systemFontOfSize:12.0];
[button setTintAdjustmentMode:UIViewTintAdjustmentModeAutomatic];
[button addTarget:self action:@selector(play:) forControlEvents:UIControlEventTouchUpInside]; 展开
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:NSLocalizedString(@"PLAY", nil) forState:UIControlStateNormal];
button.titleLabel.font = [UIFont systemFontOfSize:12.0];
[button setTintAdjustmentMode:UIViewTintAdjustmentModeAutomatic];
[button addTarget:self action:@selector(play:) forControlEvents:UIControlEventTouchUpInside]; 展开
展开全部
如果你没有使用AutoLayout
你需要改变button.frame = CGRectMake(xx, xx, 能够显示全文字的合适宽度, 比字体大2.0f的高度)
如果你使用了AutoLayout
你需要改变button的width Constraint至能够显示全文字的合适宽度.
你需要改变button.frame = CGRectMake(xx, xx, 能够显示全文字的合适宽度, 比字体大2.0f的高度)
如果你使用了AutoLayout
你需要改变button的width Constraint至能够显示全文字的合适宽度.
追问
谢谢,我找到我的问题了。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询