如何获取默认layer.borderWidth
的属性layer.borderColor
,layer.cornerRadius
和UITextField
的值?
感谢。
答案 0 :(得分:4)
导入QuartzCore
框架后,您可以直接访问textfield图层:
UITextField *txt = //init here;
NSLog(@"%f", txt.layer.borderWidth);
NSLog(@"%@", txt.layer.borderColor);
NSLog(@"%f", txt.layer.cornerRadius);
希望这有帮助。