Created
October 17, 2014 10:46
-
-
Save bleft/99d9fd8e9106d855e254 to your computer and use it in GitHub Desktop.
Make round UIView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let layer = view.layer | |
layer.cornerRadius = CGRectGetWidth(mapView.bounds) / 2 | |
layer.borderWidth = 1 | |
layer.masksToBounds = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment