// 加载原图
UIImage *image = [UIImage imageNamed:@"chat_send_nor"];
// 拉伸处理(说明需要保护的区域)
image = [image resizableImageWithCapInsets:UIEdgeInsetsMake(30, 30, 30, 30) resizingMode:UIImageResizingModeStretch];
// left
// top
// width
// height
// right = width - left - 1;
// bottom = height - top - 1;
// 根据以上公式计算,需要你给出左边保护多少,和上面保护多少
image = [image stretchableImageWithLeftCapWidth:image.size.width * 0.5 topCapHeight:image.size.height * 0.5];