zoukankan      html  css  js  c++  java
  • iOS开发-UIImageView的contentMode属性

    UIImageView 的contentMode这个属性是用来设置图片的显示方式,如居中、居右,是否缩放等,有以下几个常量可供设定:
    UIViewContentModeScaleToFill
    UIViewContentModeScaleAspectFit
    UIViewContentModeScaleAspectFill
    UIViewContentModeRedraw
    UIViewContentModeCenter
    UIViewContentModeTop
    UIViewContentModeBottom
    UIViewContentModeLeft
    UIViewContentModeRight
    UIViewContentModeTopLeft
    UIViewContentModeTopRight
    UIViewContentModeBottomLeft
    UIViewContentModeBottomRight

    注意以上几个常量,凡是没有带Scale的,当图片尺寸超过 ImageView尺寸时,只有部分显示在ImageView中。UIViewContentModeScaleToFill属性会导致图片变形。UIViewContentModeScaleAspectFit会保证图片比例不变,而且全部显示在ImageView中,这意味着ImageView会有部分空白。UIViewContentModeScaleAspectFill也会证图片比例不变,但是是填充整个ImageView的,可能只有部分图片显示出来。

    例如:

    1.显示正常的图片

    _image = [[UIImageView alloc] init];  
    image = [UIImage imageNamed:@"12.jpeg"];  
    _image.backgroundColor = [UIColor brownColor];  
    _image.clipsToBounds = YES;  
    _image.frame = CGRectMake(100, 130, 100, 100);  
    _image.contentMode = UIViewContentModeScaleToFill;  
    [self.view addSubview:_image]; 
    

    2. 

    1 _image.contentMode = UIViewContentModeScaleAspectFill;  

    3.

    1 _image.contentMode = UIViewContentModeScaleAspectFit;  

    ref http://blog.csdn.net/sqc3375177/article/details/17415635 

  • 相关阅读:
    php中文乱码处理方法
    Zend 官方框架增加 Swoole 协程支持 !
    矩阵行列式的向量表示
    ArduinoYun教程之ArduinoYun硬件介绍
    MIT 操作系统实验 MIT JOS lab1
    java File_encoding属性
    Java入门 第一季第五章 编程练习解析
    android 三种定位方式
    6.30
    OpenJudge百炼习题解答(C++)--题3142:球弹跳高度的计算
  • 原文地址:https://www.cnblogs.com/feiling/p/4745097.html
Copyright © 2011-2022 走看看