给collectionView设置头标题视图:
UIView *HeaderView = [[UIView alloc]initWithFrame:CGRectMake(0, -313, self.view.width, 313)];
self.collectionView.contentInset = UIEdgeInsetsMake(313, 0, 0, 0);//上左下右
HeaderView.backgroundColor = [UIColor redColor];
[self.collectionView addSubview:HeaderView];