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.
在我将项目更新到 Xcode5 后,我的 ScrollView 滚动得太远了。在 Xcode5 之前,我的 ScrollViews 从未遇到过任何问题。
尝试这个:
- (void)viewDidLoad { [super viewDidLoad]; if ([self respondsToSelector: @selector(edgesForExtendedLayout)]) self.edgesForExtendedLayout = UIRectEdgeNone; }
当 UIScrollView 不是 Controller 中的根视图时,还需要在滚动视图和根视图之间添加约束(左、右、上、下)。