UICollectionview背景是黑色无法修改
如图所示, 我在一个viewcontroller.view里面添加了一个collectionView和一个tableview, collectionview的背景色为黑色, 修改过background color却不管用是什么原因呢?
一些相关代码片段:
一、viewcontroller添加collection
MagicsPhotoWaterFallLayout *layout = [[MagicsPhotoWaterFallLayout alloc] init];
layout.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
self.waterFallLayoutView = [[MaigcsPhotoWaterFallViewController alloc] initWithCollectionViewLayout:layout];
_waterFallLayoutView.tagId = self.tagId;
_waterFallLayoutView.viewFrame = CGRectMake(0, topBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT - topBarHeight);
[self.view addSubview:_waterFallLayoutView.view];
二、
在collectionview的viewdidload里面修改了背景色
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationController.navigationBar.translucent = NO;
self.view.backgroundColor = [UIColor whiteColor];
self.view.clipsToBounds = YES;
self.view.frame = self.viewFrame;
self.dataArray = [[NSMutableArray alloc] init];
self.refreshControl = [[UIRefreshControl alloc] init];
[self.refreshControl addTarget:self action:@selector(refreshControlValueChanged) forControlEvents:UIControlEventValueChanged];
MagicsPhotoWaterFallLayout *layout = (MagicsPhotoWaterFallLayout *)self.collectionView.collectionViewLayout;
layout.delegate = self;
self.itemWidth = layout.itemWidth;
[self.collectionView registerClass:[MagicsWaterFallViewCell class] forCellWithReuseIdentifier:waterFallCellIdentifier];
self.collectionView.delegate = self;
self.collectionView.dataSource = self;
[self.collectionView setFooterHidden:NO];
__weak typeof(self) weakSelf = self;
[self.collectionView addFooterWithCallback:^{
[weakSelf dragResfreshAtTop:NO];
}];
[self dragResfreshAtTop:YES];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
self.view.backgroundColor 和 self.collectionView.backgroundColor 是不一样的。
通常这种是小错误引起的。
检查一下你的storyboard。
再检查一下你的代码。
根据你给出的代码,我只能说通常是被重新设置了背景或者是因为其他view的障眼法造成的。
先检查代码再说咯。
self.collectionView.backgroundColor = [uicolor whitecolor];