UICollectionVIew: How can I remove the space on top first cell’s row?
UICollectionView is descendant of UIScrollView class which has contentInset property, setting -20 top inset fixes the problem [self.calendarView setContentInset:UIEdgeInsetsMake(-20, 0, 0, 0)]; However, the problem comes from UIViewController’s automaticallyAdjustsScrollViewInsets property. By documentation: Default value is YES, which allows the view controller to adjust its scroll view insets in response to the screen areas consumed by … Read more