我正在尝试像所以设置所有文本字段的样式:
CGRect frameRect2 = _lastname_field.frame; frameRect2.size.height = 30; _lastname_field.font = [UIFont fontWithName:@"AppleGothic" size:15]; _lastname_field.frame = frameRect2; _lastname_field.backgroundColor= [UIColor whiteColor]; _lastname_field.layer.cornerRadius = 5.0; [_lastname_field.layer setBorderColor: [[UIColor grayColor] CGColor]]; [_lastname_field.layer setBorderWidth: 1.0]; _lastname_field.clipsToBounds = YES;
那个领域看起来很棒.唯一的问题是,整个应用程序中有超过50个文本字段.有没有一种简单的方法可以用同样的方式设置所有这些样式?其中一些甚至没有合成/命名.
谢谢!