如何在iOS中的大按钮内绘制小按钮

时间:2012-09-05 16:00:38

标签: iphone ios uibutton uikeyboard

我已经制作了一个按钮。当我点击它时,它变得很大但是字母不是很好。我想在大按钮内放置另一个按钮。我怎么能这样做?

1 个答案:

答案 0 :(得分: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]];