您的位置:首页 > 产品设计 > UI/UE

UITextFiled的LeftView

2016-01-07 19:07 381 查看
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 30, 30)];    

    label.backgroundColor = [UIColor clearColor];

    label.textColor = [UIColor lightGrayColor];

    label.text = @"Edit:";

    UITextField *tf = [[UITextField alloc] initWithFrame:CGRectMake(50, 100, 150, 31)];

    tf.borderStyle = UITextBorderStyleRoundedRect;

    tf.leftViewMode = UITextFieldViewModeAlways;    

    tf.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;

    tf.leftView = label;

也可以在TextField的leftView上添加图片等我们想添加的东西
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息