You can set Angle-Radius on any subclass of UIView.
- Add a QuartzCore Structure to Your Project
- Add
#import <QuartzCore/QuartzCore.h> to a subclass of UIViewController (where you have access to the UITextfield instance of your choice - Inside viewDidLoad / viewWillAppear (or anywhere else where your UITextfield is an allready instance of the call
[yourTextField.layer setCornerRadius:14.0f]; - Play with the cornerRadius value until it looks good.
I think this will help you.
source share