我正在设置contentInsetUse
添加到内容周围的滚动区域,如下所示
- (void)viewDidLoad
{
[super viewDidLoad];
self.collectionView.contentInset = UIEdgeInsetsMake(30.0f, 0.0f, 70.0f, 0.0f);
UINib *cellNib = [UINib nibWithNibName:@"NibCell" bundle:nil];
[self.collectionView registerNib:cellNib forCellWithReuseIdentifier:@"reusedCell"];
// Set layout for UIViewCollection
CollectionViewLayout *flowLayout = [[CollectionViewLayout alloc] init];
[self.collectionView setCollectionViewLayout:flowLayout];
}
首次将应用程序安装在模拟器或设备上时,contentInset 无法正常工作
您可以看到顶部根本没有设置,而是底部。但是,当我通过双击主页按钮或再次从 xcode 中运行来终止应用程序时。contentInset
已设置。
现在太令人沮丧了……我在这里缺少什么。有经历的请帮忙。谢谢