iOS 子视图在父视图的显示范围

UIView的一个属性

@property(nonatomic)                 BOOL              clipsToBounds;              // When YES, content and subviews are clipped to the bounds of the view. Default is NO.

说明:

设定子视图的显示范围是否在父视图范围内.默认值为NO.

YES: 子视图超出父视图范围部分不显示.

NO: 子视图超出父视图范围时, 会显示.


你可能感兴趣的:(Objective-C,iOS,iOS,clipsToBounds,子视图在父视图的显示范围)