I have an app that incorporates many round rect buttons. However, in xcode 5, those dont exist. How do I get the round rect buttons back? They are essential to my app. Now it ju
Same can achieved by programmatically.where myView is IBOutlet object.
myView.layer.cornerRadius = 5; myView.layer.masksToBounds = YES;