UIImageView的三种方式

2015-12-11  本文已影响38人  俊月
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比例

上一篇 下一篇

猜你喜欢

热点阅读