//原图大小 90x60
UIImage *image = [UIImage imageNamed:@"AlbumTriangleB.png"];
UIImageView *iv = [[UIImageView alloc] initWithFrame:CGRectMake(20, 30, 90, 60)];
iv.image = image;
iv.image = [iv.image stretchableImageWithLeftCapWidth:50 topCapHeight:6];
[self.view addSubview:iv];
[iv release];
iv.frame = CGRectMake(20, 30, 280, 60);
11-08
3万+
