iosUITextField属性

 

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

 

posted @ 2014-11-19 23:23  小毛驴  阅读(185)  评论(0编辑  收藏  举报