我想以编程方式调整按钮的大小,但修改参数没有效果。
btnCancel = [UIButton buttonWithType:102];
[btnCancel setFrame:CGRectMake(22.0f, 7.0f, 40.0f, 40.0f)];
[btnCancel setTitle:@"Anuluj" forState:UIControlStateNormal];
[btnCancel setTintColor:[UIColor redColor]];
[btnCancel addTarget:self action:@selector(cancelTyping) forControlEvents:UIControlEventTouchUpInside];
知道为什么吗?我可以给参数任何我喜欢的量,但结果是相同的 - 宽度限制为文本长度。