Reputation: 43
how to get label like "Best" which is shown on above image.
Upvotes: 0
Views: 111
Reputation: 3657
You can rotate your label by using transform:
lblBest.transform = CGAffineTransform(rotationAngle: .pi/3)
Upvotes: 2