美文网首页
iOS 网络图片自适应imageView的大小

iOS 网络图片自适应imageView的大小

作者: 三千沉浮 | 来源:发表于2018-05-25 09:46 被阅读0次

    废话不多说,直接上代码!

    创建imageView的时候这么写就OK

        UIImageView *imgV_proPic = [[UIImageView alloc]initWithFrame:CGRectMake(15, 15, 100, 100)];
        imgV_proPic.backgroundColor = [UIColor orangeColor];
        [self.contentView addSubview:imgV_proPic];
        [imgV_proPic setContentScaleFactor:[[UIScreen mainScreen] scale]];
        imgV_proPic.contentMode =  UIViewContentModeScaleAspectFill;
        imgV_proPic.clipsToBounds  = YES;
    

    小伙伴们可以试一下~

    相关文章

      网友评论

          本文标题:iOS 网络图片自适应imageView的大小

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