इसलिए मैं पहले से ही छाया को जोड़ने के लिए 2 दृश्य जोड़ने पर विभिन्न पोस्टों के माध्यम से चला गया, लेकिन मैं अभी भी इसे काम पर नहीं ला सकता हूं अगर मैं इसे जोड़ना चाहता हूं 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
।