Hi,
In order to make a UITextField with out or no border, do like this.
In your .h class file,
IBOutlet UITextField *urTextField;
In your .m class file,
urTextField.borderStyle = UITextBorderStyleNone;
Thus you will get a UITextField named urTextField without border.
🙂