我似乎无法改变UIStepper的大小:
>在IB中,“宽度”和“高度”框显示为灰色.
>我使用了initWithFrame:
UIStepper * stepper = [[UIStepper alloc] initWithFrame:CGRectMake(300,638,120,80)];
但它不会改变大小.关于SO的几个帖子似乎暗示它是可变的.有什么建议吗?
解决方法
来自文档:
The bounding rectangle for a stepper matches that of a UISwitch object.
听起来不像前面那样可能.
// Frame defines location,size values are ignored UIStepper *stepper = [[UIStepper alloc] initWithFrame:CGRectMake(120,20,0)];
但你可以尝试transform it’s layer.