美文网首页
UITextField左边的图片

UITextField左边的图片

作者: hY_Ramos | 来源:发表于2016-07-29 10:46 被阅读30次
    -(id)initWithFrame:(CGRect)frame Icon:(UIImageView*)icon
    {
        self = [super initWithFrame:frame];
        if (self) {
            self.leftView = icon;
            self.leftViewMode = UITextFieldViewModeAlways;
        }
        return self;
    }
    
    -(CGRect) leftViewRectForBounds:(CGRect)bounds {
        CGRect iconRect = [super leftViewRectForBounds:bounds];
        iconRect.origin.x += 10;// 右偏10
        return iconRect;
    }
    

    相关文章

      网友评论

          本文标题:UITextField左边的图片

          本文链接:https://www.haomeiwen.com/subject/ypkzjttx.html