25
UIVIV के केवल ऊपरी-बाएँ और ऊपरी-दाएँ कोने के लिए कार्नरियस को कैसे सेट करें?
क्या cornerRadiusकेवल ऊपरी-बाएँ और दाएँ-बाएँ कोने के लिए सेट करने का कोई तरीका है UIView? मैंने निम्नलिखित की कोशिश की, लेकिन यह अब दृश्य नहीं देख रहा है। UIView *view = [[UIView alloc] initWithFrame:frame]; CALayer *layer = [CALayer layer]; UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRoundedRect:frame byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight) cornerRadii:CGSizeMake(3.0, 3.0)]; layer.shadowPath = shadowPath.CGPath; …