国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

圖片的簡單拉伸操作

2019-11-14 18:43:33
字體:
來源:轉載
供稿:網友

初始圖片尺寸大小為 25 * 28 pixels

現在我們在根試圖上創建兩個button

 

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

    button.frame = CGRectMake(50, 100, 25, 28);

    [button setBackgroundImage:[UIImage imageNamed:@"btn.png"] forState:UIControlStateNormal];

    [self.view addSubview:button];

    

    UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];

    button1.frame = CGRectMake(50, 200, 200, 28);

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

   [button1 setBackgroundImage:image forState:UIControlStateNormal];

    [self.view addSubview:button1];

 沒做拉伸處理前圖片效果

 

    

    

在iOS 5.0中,UIImage有一個新方法可以處理圖片的拉伸問題 

- (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets 

CGFloat left = 12// 左端寬度  

CGFloat right = 12// 右端寬度  

UIEdgeInsets insets = UIEdgeInsetsMake(0, left, 0, right);

// 伸縮后重新賦值  

 UIImage *new = [image resizableImageWithCapInsets:insets];

 [button1 setBackgroundImage:new forState:UIControlStateNormal];

 [self.view addSubview:button1];

 在iOS6.0中,UIImage又提供了一個方法處理圖片拉伸

- (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets resizingMode:(UIImageResizingMode)resizingMode  

對比iOS5.0中的方法,只多了一個UIImageResizingMode參數,用來指定拉伸的模式:

UIImageResizingModeStretch:拉伸模式,通過拉伸UIEdgeInsets指定的矩形區域來填充圖片

UIImageResizingModeTile:平鋪模式,通過重復顯示UIEdgeInsets指定的矩形區域來填充圖片

 

CGFloat left = 12// 左端寬度  

CGFloat right = 12// 右端寬度  

UIEdgeInsets insets = UIEdgeInsetsMake(0, left, 0, right); 

// 伸縮后重新賦值  

 UIImage *new = [image resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch];

 [button1 setBackgroundImage:new forState:UIControlStateNormal];

  [self.view addSubview:button1];

 

下面是拉伸過的圖片

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 石门县| 越西县| 神池县| 清苑县| 于都县| 额敏县| 油尖旺区| 海伦市| 龙井市| 遂平县| 绥阳县| 南和县| 华宁县| 吴旗县| 白城市| 梁山县| 随州市| 灵武市| 兴隆县| 论坛| 深州市| 永靖县| 比如县| 南皮县| 汉寿县| 洛川县| 阿巴嘎旗| 车险| 钦州市| 项城市| 娄烦县| 乐都县| 乌兰县| 永泰县| 来凤县| 县级市| 郧西县| 根河市| 洛阳市| 渭源县| 黑山县|