美文网首页
UIImageView的三种方式

UIImageView的三种方式

作者: Roger_单 | 来源:发表于2015-12-11 10:52 被阅读21次

UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"图片"]];
    /*
     UIViewContentModeScaleToFill,
     UIViewContentModeScaleAspectFit,      // contents scaled to fit with fixed aspect. remainder is transparent
     UIViewContentModeScaleAspectFill,
     */
    imgView.contentMode = UIViewContentModeScaleAspectFit;

Fill(填充) Fit(试用)Aspect(方向)scale(比例)

  • 如果子类view比父类的view大 那么它的坐标为负的, bounds为本身

相关文章

网友评论

      本文标题:UIImageView的三种方式

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