zoukankan      html  css  js  c++  java
  • UIButton设置imgae图片自适应button的大小且不变形

    在某些情况下,我们使用的UIButton的背景图片不一定就是标准的尺寸,有时会偏大,那么怎么办?

    这个比较简单直接设置 :    self.imageView.contentMode = UIViewContentModeScaleAspectFill;

    但是问题来了,如果图片尺寸比较button的bounds 小的话,他不会撑满整个控件默认会居中显示,有些时候这并不是我们想要的效果。有时我们希望他能撑满整个button。

    1
    - (CGRect)imageRectForContentRect:(CGRect)bounds{
    2
            return CGRectMake(0.0, 0.0, self.size.width, self.size.height);
    3
    }

    那么这样处理即可:

    继承UIButton,重写 imageRectForContentRect 方法返回button的bounds 

    btn.imageView setContentMode:UIViewContentModeScaleAspectFill]; 

    下面方法自己可以试下, 你就知效果了...

    typedef NS_ENUM(NSInteger, UIViewContentMode) {

        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,//右下

    };

  • 相关阅读:
    如何做实时监控?—— 参考 Spring Boot 实现
    如何做实时监控?—— 参考 Spring Boot 实现
    spring boot application properties配置详解
    Jrebel 6.2.1破解
    智能社-JS -wiki
    hibernate.properties
    Tomcat 的 socket bind failed的解决方法
    js 排序 SORT 各种方法
    java EE 如何使用Eclipse启动一个项目
    2016-06-06 数组的几个重要方法
  • 原文地址:https://www.cnblogs.com/OIMM/p/5576853.html
Copyright © 2011-2022 走看看