首页 > 学院 > 开发设计 > 正文

iosUITextField属性

2019-11-14 19:51:08
字体:
来源:转载
供稿:网友

 

@PRoperty UITextField *caption;caption = [[UITextField alloc] initWithFrame:CGRectMake(0,                                                            self.frame.size.height/2,                                                            self.frame.size.width,                                                            32)];    caption.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.5];    caption.textAlignment = NSTextAlignmentCenter;    caption.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;    caption.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;    caption.textColor = [UIColor whiteColor];    caption.keyboardAppearance = UIKeyboardAppearanceDark;    caption.alpha = 0;    caption.tintColor = [UIColor whiteColor];    caption.delegate = self;

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表