按钮宽度,高度

时间:2010-05-17 01:07:05

标签: iphone cocoa-touch uikit

在运行时更改UIButton维度的最佳方法是什么?宽度?高度?

1 个答案:

答案 0 :(得分:4)

设置frame

CGPoint origin = button.frame.origin;
button.frame = CGRectMake( origin.x, origin.y, newWidth, newHeight );