Chirag Lukhi
Chirag Lukhi

Reputation: 1546

Round shape image view in ios

I want to make complete round shape of imageview in ios for displaying profile photo of any user.

Is it possible with layer.cornerRadius property or need to find other solution?

Any help will be appreciated.

Upvotes: 4

Views: 5084

Answers (2)

Vishal Kardode
Vishal Kardode

Reputation: 971

yes you can use layer.cornerRadius just dont forget to add layer.masksToBounds = YES;

Upvotes: 4

Scar
Scar

Reputation: 3480

Using QuartzCore is the best solution for you, please see this answer, it will help you.

Note: What apply on UIView will apply on UIImageView.

Upvotes: 1

Related Questions