标签: iphone cocoa-touch uikit
在运行时更改UIButton维度的最佳方法是什么?宽度?高度?
答案 0 :(得分:4)
设置frame。
frame
CGPoint origin = button.frame.origin; button.frame = CGRectMake( origin.x, origin.y, newWidth, newHeight );