我想在我的UIButton CGRect中将这个+符号居中(x和y轴都居中),但是它一直被压向y轴。

UIButton *aButton = [UIButton buttonWithType:UIButtonTypeSystem];
[aButton setTitle:@"+" forState:UIControlStateNormal];
[aButton.titleLabel setFont:[UIFont fontWithName:@"HelveticaNeue-Bold" size:(40.0)]];
[aButton setBackgroundColor:[UIColor grayColor]];
[aButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[aButton setTitleColor:[UIColor blueColor] forState:UIControlStateHighlighted];

aButton.layer.cornerRadius = 25.0;

aButton.frame = CGRectMake(75.0, 100.0, 50.0, 50.0);

最佳答案

如果您有上升和下降功能,这对您来说似乎更正确。按钮内有一个标签,标签的大小可容纳此字体所有可能字符的高度。如果您不喜欢标签的位置,可以随意移动它。有很多方法可以做到这一点。例如,您可以尝试使用按钮的titleEdgeInsets

关于ios - 使UIButton标题居中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24356966/

10-10 21:04