Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用包含 UIScrollViews 和 UIButtons 的 UIView 实现一个画廊。
当方向为纵向时,没有问题,但是当de方向变为横向模式时,底部300像素停止感知。
有任何想法吗?
如果您将点击手势附加到视图,则视图需要根据超级视图新框架调整自身大小。您需要为此正确设置autoResizingMask您的视图的属性。
autoResizingMask
我想你可以设置静态帧值。如果是这样,请将其设置为动态。例如:
your_View=[UIVIew alloc]initWithFrame:[[UIScreen mainScreen] bounds]];
或者
your_view.frame = self.view.bounds;