I want to create a round circular button. This button should look like a circle.
This code gives round rectangular button.
UIButton *button = [UIBut
Try this, it worked for me. It will make your button or any view in circular shape only if you have taken it in square i.e width should be equals to height.
yourButton.layer.cornerRadius = yourButton.bounds.size.width/2;