收集视图在iOS 10.3.3中向上移动。但在iOS 11.0中工作正常。 任何人都可以告诉我如何修复这个版本
的问题UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
MSProductCategoryViewController
*msProductCategoryViewController = [storyBoard instantiateViewControllerWithIdentifier:@"MSProductCategoryViewController"];
msProductCategoryViewController.title =titleName;
[self.navigationController pushViewController:msProductCategoryViewController animated:YES];
答案 0 :(得分:-1)
对于CollectionView上移问题,请检查您是否在故事板中取消选择ViewController的“调整滚动视图插入”属性。
Attributes Inspector of ViewController
您添加了20个值的顶部约束。我假设你想为集合视图添加顶部填充。如果这是原因,那么我建议使用CollectionView的“Section Insets”属性。