·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> app软件开发 >> IOS开发 >> iosUITextField属性

iosUITextField属性

作者:佚名      IOS开发编辑:admin      更新时间:2022-07-23

 

@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;