I am trying to make a UILabel in Swift a perfect circle. I am currently using the following:
pResult.layer.masksToBounds = true
pResult.layer.cornerRadius = 125
The problem with this is that it works fine on 6s plus but any other size it does not become a circle. What is the best way to do this?