码迷,mamicode.com
首页 > 移动开发 > 详细

IOS开发教程--怎样使用点9图片

时间:2017-06-13 19:47:10      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:ack   nts   pos   tom   高度   图片   mod   name   iss   

事先准备一张图片:技术分享


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];




IOS开发教程--怎样使用点9图片

标签:ack   nts   pos   tom   高度   图片   mod   name   iss   

原文地址:http://www.cnblogs.com/yxysuanfa/p/7002995.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!