UIViewContentModeScaleToFill : 圖片拉伸至填充整個UIImageView(圖片可能會變形)
UIViewContentModeScaleAspectFit : 圖片拉伸至完全顯示在UIImageView里面為止(圖片不會變形)
UIViewContentModeScaleAspectFill :
圖片拉伸至 圖片的寬度等于UIImageView的寬度 或者 圖片的高度等于UIImageView的高度 為止
UIViewContentModeRedraw : 調用了setNeedsDisplay方法時,就會將圖片重新渲染
UIViewContentModeCenter : 居中顯示
UIViewContentModeTop,
UIViewContentModeBottom,
UIViewContentModeLeft,
UIViewContentModeRight,
UIViewContentModeTopLeft,
UIViewContentModeTopRight,
UIViewContentModeBottomLeft,
UIViewContentModeBottomRight,
經驗規律:
1.凡是帶有Scale單詞的,圖片都會拉伸
2.凡是帶有Aspect單詞的,圖片都會保持原來的寬高比,圖片不會變形