Friday, March 22, 2013

iOS Dev: Customize UITextField and UITextView

http://nullpointr.wordpress.com/2012/02/28/ios-dev-customize-uitextfield-and-uitextview/

http://dribbble.com/shots/18320-iPhone-Login Very good textField

http://stackoverflow.com/questions/5094907/custom-uitextfield

CALayer *imageLayer = textView.layer;
[imageLayer setCornerRadius:10];
[imageLayer setBorderWidth:1];
imageLayer.borderColor=[[UIColor lightGrayColor] CGColor];

No comments:

Post a Comment