[iOS] Image Rendering Mode
이미지 렌더링 모드에 대해 알아 보도록 하겠습니다. UIImage의 RenderingMode에는 아래와 같이 3가지의 옵션이 있습니다. extension UIImage { @available(iOS 7.0, *) public enum RenderingMode : Int { case automatic // Use the default rendering mode for the context where the image is used case alwaysOriginal // Always draw the original image, without treating it as a template case alwaysTemplate // Always draw the image as a template image, i..