zoukankan      html  css  js  c++  java
  • 图片处理

    给UILabel加入背景图片:

    self.accountLabel = [[UILabel alloc]initWithFrame:CGRectMake(kXW(accountBtn), kY(accountBtn), 250, 32)];

     self.accountLabel.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"qipao.png"]];


    图片拉伸:

    在iOS6.0中。UIImage提供了一个方法处理图片拉伸

    [java] view plaincopy
    1. - (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets resizingMode:(UIImageResizingMode)resizingMode  

    • UIImageResizingModeStretch:拉伸模式,通过拉伸UIEdgeInsets指定的矩形区域来填充图片
    • UIImageResizingModeTile:平铺模式。通过反复显示UIEdgeInsets指定的矩形区域来填充图片

    [java] view plaincopy
    1. CGFloat top = 25// 顶端盖高度  
    2. CGFloat bottom = 25 ; // 底端盖高度  
    3. CGFloat left = 10// 左端盖宽度  
    4. CGFloat right = 10// 右端盖宽度  
    5. UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);  
    6. // 指定为拉伸模式,伸缩后又一次赋值  
    7. image = [image resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch];  


  • 相关阅读:
    Hook技术
    进程间的调试关系
    常见的2种断点方法
    CrackMe的简单破解
    PE文件结构
    DLL卸载
    DLL注入
    调用DLL的2种方式
    iOS密码输入框的实现
    UITableView.separatorInset
  • 原文地址:https://www.cnblogs.com/gccbuaa/p/6709911.html
Copyright © 2011-2022 走看看