开发者

uiButton should always be as top view in iPhone

开发者 https://www.devze.com 2023-01-01 00:29 出处:网络
i have a UIView UIImageview UIButton and UISlider added as subview to UIView example: [view addsubview:uiImageview_obj];

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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消