UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
layout.sectionInset = UIEdgeInsetsMake(20, marginLR, 20, marginLR);//設置其邊界
UIEdgeInsetsMake(CGFloat top, CGFloat left, CGFloat bottom, CGFloat right)
top表示的cell與布局頂部的間隙,如果0的情況
layout.sectionInset = UIEdgeInsetsMake(0, marginLR, 20, marginLR);//設置其邊界

layout.sectionInset = UIEdgeInsetsMake(0, marginLR, 20, marginLR);//設置其邊界

