zoukankan      html  css  js  c++  java
  • IOS开发教程--怎样使用点9图片

    事先准备一张图片:


    UIImage *image = [UIImage imageNamed:@"red.png"];

        在iOS 5.0之前能够这么用:

        NSInteger leftCapWidth = image.size.width * 0.5f;

        NSInteger topCapHeight = image.size.height * 0.5f;

        image = [image stretchableImageWithLeftCapWidth:leftCapWidth topCapHeight:topCapHeight];


    在iOS 5.0中能够这么用:

        CGFloat top = 8;// 顶端盖高度

       CGFloat bottom = 8; // 底端盖高度

        CGFloat left = 8; // 左端盖宽度

       CGFloat right = 8;// 右端盖宽度

        UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);

        // 伸缩后又一次赋值

        image = [image resizableImageWithCapInsets:insets];

    在iOS6.0中能够这么用:

       CGFloat top = 12; // 顶端盖高度

        CGFloat bottom = 12 ; // 底端盖高度

        CGFloat left = 10; // 左端盖宽度

        CGFloat right = 10; // 右端盖宽度

        UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);

        // 指定为拉伸模式,伸缩后又一次赋值

        image = [image resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch];




  • 相关阅读:
    mongodb的安装和sql操作
    查看apache和nginx的负载和连接数情况
    ansible中playbook使用
    mysql导入导出命令详解
    生产环境下yum的配置
    firewalld的防火墙
    SOCK5代理服务器
    Linux系统基础优化总结
    服务器内存和缓存的优化
    activemq概念介绍
  • 原文地址:https://www.cnblogs.com/yxysuanfa/p/7002995.html
Copyright © 2011-2022 走看看