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
TRY THIS Button Border With Rounded Corners
anyButton.backgroundColor = .clear anyButton.layer.cornerRadius = anyButton.frame.height / 2 anyButton.layer.borderWidth = 1 anyButton.layer.borderColor = UIColor.black.cgColor