When YES, content and subviews are clipped to the bounds of the view. Default is NO.
图中橙色为UIScrollview,蓝色为scrollview中添加子视图。
因为默认UIScrollview的clipsToBounds为NO,也就是不裁剪。所以会显示子视图的全部。
要想只显示scrollview中可见的部分。需要设置clipsToBounds为YES。这样就可以把多余的给裁剪掉。只显示UIScrollview中可见的部分。