How to fill uncompleted circle drawn iOS
Solution:
If you want to fill the custom draw you had did in iOS follow the below steps.For example if you drawn an annotation symbol using arc function then follow the steps to achieve that.
If you want to fill the custom draw you had did in iOS follow the below steps.For example if you drawn an annotation symbol using arc function then follow the steps to achieve that.
Code:
CGContextSetFillColorWithCol or(ctx, UIColor.black.CGColor);
CGContextFillPath(ctx);
Comments
Post a Comment