ios中图片拉伸的几种方式

2016-11-23  本文已影响25人  seventhboy
  1. UIImageView整体拉伸

UIImageView-contentMode

typedef NS_ENUM(NSInteger, UIViewContentMode) {
UIViewContentModeScaleToFill, // 默认 拉伸(会变形)
UIViewContentModeScaleAspectFit, // 等比例拉伸
UIViewContentModeScaleAspectFill, // 等比例填充
UIViewContentModeRedraw, // redraw on bounds change (这个不清楚)
UIViewContentModeCenter, // 下面的就是不拉伸按位置显示了
UIViewContentModeTop,
UIViewContentModeBottom,
UIViewContentModeLeft,
UIViewContentModeRight,
UIViewContentModeTopLeft,
UIViewContentModeTopRight,
UIViewContentModeBottomLeft,
UIViewContentModeBottomRight,
};

  1. UIImage局部拉伸

// 按4边间距显示不拉伸的区域

3.UIImage修改大小

//内缩放,一条变等于最长边,另外一条小于等于最长边

上一篇下一篇

猜你喜欢

热点阅读