我似乎无法改变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.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。