Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

(iphone) set subview's frame outside of superview's bound?

I noticed that I can place subview outside of superview's bound (either partly or fully).
I wonder if that's acceptable, since it seems to be abnormal in usual iphone view programming.

Thank you.

like image 206
eugene Avatar asked Jan 21 '23 04:01

eugene


2 Answers

This is acceptable and sometimes even common practice - custom implementations of scroll views or other "composite" views, for example, commonly place or move objects outside the superview's bounds.

You may be interested in the UIView property clipsToBounds, which restricts subview drawing to only the bounds of the superview.

like image 137
Tim Avatar answered Jan 30 '23 01:01

Tim


Also note that out of bounds sub views pose a problem when implementing accessibility.

The accessibility frame gets displayed alright, but only appears when selecting an area of te said frame when touching inside the parent's bounds. If the sub view is completely outside the parent's bounds it is only accessible by side swiping with VoiceOver on. Touch dragging across the screen will only select a view when hiting said sub view within the parent's bounds.

like image 25
Jeroen Leenarts Avatar answered Jan 30 '23 00:01

Jeroen Leenarts