uiButton 应该始终作为 iPhone 中的顶视图

发布于 2024-09-02 16:06:54 字数 332 浏览 7 评论 0原文

我有一个 UIView UIImageview UIButton 和 UISlider 作为子视图添加到 UIView

示例:

[view addsubview:uiImageview_obj]; [视图addsubview:uiButtonview_obj]; [视图addsubview:uiSliderview_obj];

当我缩放 uiimageview_obj 时,它也覆盖了 uislider 和 uibutton,因此当我缩放图像时我无法使用 uislider 和 uibutton。那么请告诉我如何使 uislider 和 uibutton 始终位于顶部?

先感谢您。

i have a UIView UIImageview UIButton and UISlider added as subview to UIView

example:

[view addsubview:uiImageview_obj];
[view addsubview:uiButtonview_obj];
[view addsubview:uiSliderview_obj];

When i zoom the uiimageview_obj, it covers uislider and uibutton also, hence i cannot use uislider and uibutton when i zoom the image. So please tell me how to make uislider and uibutton to be always on top?

Thank you in advance.

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

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

发布评论

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

评论(1

南七夏 2024-09-09 16:06:54

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/instm/UIView/bringSubviewToFront

[view bringSubviewToFront:uiButtonview_obj]];
[view bringSubviewToFront:uiSliderview_obj]];

你也可以这样做通过正确排序你的 addSubview 调用来实现这一点,但我认为最好在代码中做出这种明确的行为。

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/instm/UIView/bringSubviewToFront:

[view bringSubviewToFront:uiButtonview_obj]];
[view bringSubviewToFront:uiSliderview_obj]];

You could also do this by ordering your addSubview calls properly, but I think it's best to make this explicit behaviour in the code.

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