IOS開發之圖片拉伸不變形實現
(UIImage )imageCreatWithCap:(NSString )imageName { UIImage *image = [UIImage imageNamed:imageName]; // 設置左邊端蓋寬度 NSInteger leftCapWidth = image.size.width * 0.5; // 設置上邊端蓋高度 NSInteger topCapHeight = image.size.height * 0.5; return [image stretchableImageWithLeftCapWidth:leftCapWidth topCapHeight:topCapHeight]; }