18
Обведіть два кути в UIView
Трохи тому я опублікував запитання про округлення лише двох кутів подання і отримав чудову відповідь, але маю проблеми з його реалізацією. Ось мій метод drawRect: - (void)drawRect:(CGRect)rect { //[super drawRect:rect]; <------Should I uncomment this? int radius = 5; CGContextRef context = UIGraphicsGetCurrentContext(); CGContextBeginPath(context); CGContextAddArc(context, rect.origin.x + radius, rect.origin.y + rect.size.height …