그래서 그림자를 추가하기 위해 2nd view를 추가하는 것에 대한 다양한 게시물을 이미 봤지만 .NET에 추가하고 싶다면 여전히 작동하지 않습니다 UICollectionViewCell
. 나는 서브 클래 싱 UICollectionViewCell
했고, 여기에 다양한 UI 요소를 셀의 콘텐츠 뷰에 추가하고 레이어에 그림자를 추가하는 코드가 있습니다.
[self.contentView setBackgroundColor:[UIColor whiteColor]];
self.layer.masksToBounds = NO;
self.layer.shadowOffset = CGSizeMake(0, 1);
self.layer.shadowRadius = 1.0;
self.layer.shadowColor = [UIColor blackColor].CGColor;
self.layer.shadowOpacity = 0.5;
[self.layer setShadowPath:[[UIBezierPath bezierPathWithRect:self.bounds] CGPath]];
에 둥근 모서리와 그림자를 추가하는 방법을 알고 싶습니다 UICollectionViewCell
.