ios - UIPageControl 不遵守它在 UIScrollView 中的约束
<p><p>我有一个 UIScrollView,我的 ScrollView 中有很多 View 。我正在使用自动布局,我所有的 View 都以相同的方式布局:左侧和顶部间距到 superView 、宽度和高度设置。一切都滚动得很好,但是我的页面控件保持在任何位置。它不会与 ScrollView 中的其他元素一起滚动。是的,我<em>确实</em>检查了页面控件 <em></em> 是否像其他元素一样位于 ScrollView 内,是的,我已经四重检查了页面控件的约束。它只是不会滚动。可能是什么问题呢?有标签,另一个 ScrollView , TextView , ImageView ,它们都可以完美滚动,只是页面 View 有问题。 Xcode/iOS SDK 是否存在错误,还是我遗漏了什么?</p>
<p><strong>更新:</strong>我的 ScrollView 中的所有 View 都在容器 View 中。 ScrollView 和容器 View 的 <code>translatesAutoresizingMaskIntoConstraints</code> 属性都设置为 <code>NO</code>。只有页面控件不遵守它的约束。这是 Interface Builder 的屏幕截图:</p>
<p> <img src="/image/sV188.png" alt="enter image description here"/> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我让它工作了:</p>
<p>1) 将所有 View /控件放入 containerView 中并将其声明为属性。</p>
<p>2) 添加此代码:</p>
<pre><code>-(void)viewDidLayoutSubviews{
;
self.scrollView.contentSize = self.containerView.bounds.size;
}
- (void)viewDidLoad{
;
//added with containerview from g8productions
self.containerView =[ initWithFrame:CGRectMake(36, 59, 900, 1200)];
self.scrollView.translatesAutoresizingMaskIntoConstraints = NO;
;
;
}
</code></pre>
<p>希望这些解决方案中的任何一个都适合您!</p></p>
<p style="font-size: 20px;">关于ios - UIPageControl 不遵守它在 UIScrollView 中的约束,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/21259275/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/21259275/
</a>
</p>
页:
[1]