I\'m building an app using swift in the latest version of Xcode 6, and would like to know how I can modify my button so that it can have a rounded border that I could adjust mys
Based on @returntrue answer I managed to implement it in Interface Builder.
To get round corners button using Interface Builder add a Key Path = "layer.cornerRadius"
with Type = "Number"
and Value = "10"
(or other value as required) in the "User Defined RunTime Attribute
" of the Identity Inspector
of the button.