检测选择器视图的宽度和高度

发布于 2024-11-18 22:02:25 字数 168 浏览 6 评论 0原文

如何检测选择器视图的宽度和高度以便可以正确放置它?我想使用边界,但不知道如何准确地做到这一点。谢谢。

    durationPicker = [[UIPickerView alloc] initWithFrame:CGRectMake(0,244,320,400)];

how do you detect the width and height of a picker view so that it can be placed appropriately? I'd like to use bounds, but can't figure out how to do it exactly. Thanks.

    durationPicker = [[UIPickerView alloc] initWithFrame:CGRectMake(0,244,320,400)];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

且行且努力 2024-11-25 22:02:25

在你的例子中,宽度是 320,高度是 400,但是对于任何 UIView,你可以使用 myview.frame.size.width 获取宽度和高度,并且分别是myview.frame.size.height。因此 nslog 可能类似于:

NSLog(@"durationPicker Frame Width: %i Height: %i", durationPicker.frame.size.width, durationPicker.frame.size.height);

如果您想要边界而不是框架,请替换上面代码中“frame”所在的“bounds”。

Well in your case, the width is 320 and the height is 400, but for any UIView, you can get the width and height with myview.frame.size.width and myview.frame.size.height, respectively. so an nslog might be something like:

NSLog(@"durationPicker Frame Width: %i Height: %i", durationPicker.frame.size.width, durationPicker.frame.size.height);

If you want the bounds instead of the frame, substitute "bounds" where "frame" is in the above code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文