Reprinted from: http://www.cnblogs.com/bandy/archive/2012/04/25/2469369.html
-(UIImage *) Stretchableimagewithleftcapwidth: (Nsinteger) leftcapwidth topcapheight:
(Nsinteger) Topcapheight This function is an instance function of UIImage, its function is to create a content can be stretched, and the corner does not stretch the picture, need two parameters, the first is the left not stretch the width of the area, the second parameter is not stretched above the height.
Depending on the width and height of the setting, the next pixel is extended left and right and stretched up and down.
Note: The stretchable range is 1 vertical pixels after leftcapwidth, and 1 horizontal pixels after the distance of Topcapheight.
The meaning of the parameter is if the parameter specifies 10, 5. So, the picture on the left 10 pixels, the top 5 pixels. Will not be stretched, the X coordinate is 11 and one pixel will be copied horizontally, and a pixel with a Y coordinate of 6 will be copied vertically.
Note: Only one pixel is copied to a certain width. The remaining pixels behind the image are not stretched.
UIImage *img=[uiimage imagenamed:@ "bubbleself.png"]; IMG=[img stretchableimagewithleftcapwidth: topcapheight:[]; *imgview=[[Uiimageview alloc]initwithimage:img]; [Imgview setframe:cgrectmake (ten)]; [Self. View Addsubview:imgview];
IOS stretchableimagewithleftcapwidth picture magnification not distorted