zoukankan      html  css  js  c++  java
  • iOS中的图片UIImageView和UIImage(考虑性能问题)

    UIView背景图片设置

    一般设置UIImage的方法有:

        UIImage *image = [UIImage imageNamed:fileName];//不释放内存,要缓存

        UIImage *image = [UIImage imageWithContentsOfFile:path];//会释放内存

    本文分析对比了各种更改UIView背景的方法。当然,背景是根据一个图片来的(非纯色)。

    一.加一个uiimageview在uiview上面(可以)

        UIImageView* imageView = [[UIImageView alloc] initWithFrame:view.bounds];

        imageView.image = [[UIImage imageNamed:@"name.png"] stretchableImageWithLeftCapWidth:left topCapHeight:top];

        [view addSubview:imageView];

    这种方式,如果原始图片大小不够(小于view的大小),可以拉伸,在view释放后也没有什么内存保留。

    二.通过图片来生成UIColor设置view的backgroundColor(不推荐)

    1.imageNamed方式

        view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"name.png"]];

    2.contentOfFile方式

        NSString* path = [[NSBundle mainBundle] pathForResource:@"name" ofType:@"png"];

        view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithContentsOfFile:path];

    这两种方式都会在生成color时占用大量的内存(原始图片的n倍,这个n可能会达到几千的程度)。而且如果图片大小不够,就会按照原始大小一个一个u画过去,也就是不会自动拉伸。1和2的区别在于,view释放后,1中的color并不会跟着释放,而是一直存在于内存中(当然,再次根据这个图片生成color时并不会再次申请内存了),而2中的color就会随着view的释放而释放。

    三.quartzCore方式(推荐)

        UIImage *image = [UIImage imageNamed:@"name.png"];//这里推荐使用这种方式UIImage *image = [UIImage imageWithContentsOfFile:path];

        view.layer.contents = (id) image.CGImage;

        // 如果需要背景透明加上下面这句

        view.layer.backgroundColor = [UIColor clearColor].CGColor;

    综上,推荐第三种方式来根据图片设置背景色。

     
     
  • 相关阅读:
    C++:随机数生成
    C++:typedef 与 #define 的区别
    读书笔记
    从零开始:Spring Security Oauth2 讲解及实战
    SpingCloud:Gateway+Nginx+Stomp+Minio构建聊天室并进行文件传输
    Docker image-Ubuntu(jessie)下postgresql-client安装方法
    7张图了解kafka基本概念
    打包上传python代码到pypi,通过pip安装使用
    Asp.Net Core 中的HTTP协议详解
    LeetCode 1931. Painting a Grid With Three Different Colors(DP)
  • 原文地址:https://www.cnblogs.com/wangbinios/p/5716879.html
Copyright © 2011-2022 走看看