문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top