防止button的图片被挤压

2017-01-19  本文已影响54人  纯阳子_

UIViewContentMode

  typedef enum {
UIViewContentModeScaleToFill,
UIViewContentModeScaleAspectFit,      // contents scaled to fit with fixed aspect. remainder is transparent
UIViewContentModeScaleAspectFill,     // contents scaled to fill with fixed aspect. some portion of content may be clipped.
UIViewContentModeRedraw,              // redraw on bounds change (calls -setNeedsDisplay)
UIViewContentModeCenter,              // contents remain same size. positioned adjusted.
UIViewContentModeTop,
UIViewContentModeBottom,
UIViewContentModeLeft,
UIViewContentModeRight,
UIViewContentModeTopLeft,
UIViewContentModeTopRight,
UIViewContentModeBottomLeft,
UIViewContentModeBottomRight,
  } UIViewContentMode;

例如:

 //防止button的图片被挤压
 self.playImageBtn.imageView.contentMode = UIViewContentModeScaleAspectFill;
上一篇 下一篇

猜你喜欢

热点阅读