Unable to change backgroundView property on UICollectionView
Try this
self.collectionView.backgroundView =[[UIView alloc]initWithFrame:self.collectionView.bounds];
UIImageView *imgVW=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"TakePhoto"]];
[self.collectionView.backgroundView addSubView:imgVW];