我写了一个CollectionView但是出现了点问题。刚一运行还没问题。当拖拽UICollectionView时。上面出现一块无用的区域、如图中
的黄色区域
在顺便问一下 现在如果写的应用不支持以前的设备AppStore让发布吗?

[flowLayout setScrollDirection:UICollectionViewScrollDirectionVertical];
flowLayout.minimumInteritemSpacing = 1;
flowLayout.minimumLineSpacing = 1;
_collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, 320,[UIScreen mainScreen].applicationFrame.size.height+20)
collectionViewLayout:flowLayout];
NSLog(@"%f",[UIScreen mainScreen].applicationFrame.size.height);
_collectionView.delegate = self;
_collectionView.dataSource = self;
[_collectionView setBackgroundColor:[UIColor yellowColor]];
[self.view addSubview:_collectionView];
[_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cell"];
在顺便问一下 现在如果写的应用不支持以前的设备AppStore让发布吗?