2

我已经做了一个按钮。当我点击它时,它变大了,但字母不在好位置。我想在大按钮内放另一个按钮。我怎样才能做到这一点 ?

4

1 回答 1

0

如果您只想添加第二个按钮作为第一个按钮的子视图,您可以使用:

UIButton *mySmallButton = [[UIButton alloc] initWithFrame:CGRectMake:(0, 0, 50, 50)];
[mySmallButton setBackgroundColor:[UIColor redColor]];
[myBigButton addSubview:mySmallButton];

但是,如果您只是想修改第一个按钮的文本大小/对齐方式,则可以使用这些:

[[myBigButton titleLabel] setTextAlignment:UITextAlignmentCenter];
[[myBigButton titleLabel] setFont:[UIFont systemFontOfSize:24]];
于 2012-09-05T16:10:11.570 回答