Corner radius for all 4 edges:
UIBezierPath* rectanglePath = [UIBezierPath bezierPathWithRoundedRect: CGRectMake(x,y,width,height) cornerRadius: 11];
[UIColor.grayColor setFill];
[rectanglePath fill];
Corner radius for top-left edge:
UIBezierPath* rectanglePath = [UIBezierPath bezierPat...