uiButton 应该始终作为 iPhone 中的顶视图
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/instm/UIView/bringSubviewToFront:
你也可以这样做通过正确排序你的 addSubview 调用来实现这一点,但我认为最好在代码中做出这种明确的行为。
http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/instm/UIView/bringSubviewToFront:
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.