不同版本中的集合视图对齐问题

时间:2017-08-16 07:11:08

标签: ios objective-c uicollectionview storyboard

收集视图在iOS 10.3.3中向上移动。但在iOS 11.0中工作正常。 任何人都可以告诉我如何修复这个版本

的问题

enter image description here

CollectionView Constrains。 enter image description here

UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
MSProductCategoryViewController
*msProductCategoryViewController = [storyBoard instantiateViewControllerWithIdentifier:@"MSProductCategoryViewController"];
msProductCategoryViewController.title =titleName;
[self.navigationController pushViewController:msProductCategoryViewController animated:YES];

1 个答案:

答案 0 :(得分:-1)

对于CollectionView上移问题,请检查您是否在故事板中取消选择ViewController的“调整滚动视图插入”属性。

Attributes Inspector of ViewController

您添加了20个值的顶部约束。我假设你想为集合视图添加顶部填充。如果这是原因,那么我建议使用CollectionView的“Section Insets”属性。