在运行时(objective-c),如何将 UIPickerView 放置在调整大小的 UIView 中?
我发现缩小 UIPickerView 宽度的方法是将其放入调整大小的 UIView 中。但这些示例是在设计时的。在运行时(objective-c),如何将 UIPickerView 放置在调整大小的 UIView 中,因为我正在将其中 4 个并排放置?
谢谢
I am seeing that the way to shrink the width of the UIPickerView is to put it in a resized UIView. But the examples are at design time. At run-time(objective-c), how do you place a UIPickerView in a resized UIView, as I am doing this to 4 of them to be side by side ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 picker.transform = CGAffineTransformMakeScale(0.7, 0.6);像这样的东西并尝试...
这将减少宽度和高度......
尝试更改上述比例中的值并尝试。
并检查 这个
you can use picker.transform = CGAffineTransformMakeScale(0.7, 0.6); something like this and try...
This will reduce the width as well height ...
Try changing the values in the above scale and try it..
and also check this