I noticed that I can place subview outside of superview's bound (either partly or fully).
I wonder if that's acceptable, sinc开发者_如何转开发e it seems to be abnormal in usual iphone view programming.Thank you.
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.
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.
精彩评论