0

所以在 layoutSubviews 中,我调用 positionTextView 来调整我的 UIScrollView 子视图(一个 UIImageView)的框架,其中包含以下代码。

CGRect frame = informationTextView.frame;
frame.origin = CGPointMake(self.contentOffset.x, self.contentOffset.y + 414-44);
informationTextView.frame = frame;
overlayView.frame = frame;

因此在模拟器上,子视图的框架位置保持固定(根据 contentOffset),但是在设备上进行测试时,框架正在移动,就好像它没有考虑 contentOffset 一样。

我错过了模拟器和设备的行为之间的区别吗?

4

0 回答 0