代碼: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. //使圖片兩邊不拉伸,中間拉伸 UIImage *image = [UIImage imageNamed ...
代碼:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//使圖片兩邊不拉伸,中間拉伸
UIImage *image = [UIImage imageNamed:@"1.jpg"];
image = [image stretchableImageWithLeftCapWidth:floorf(image.size.width/2) topCapHeight:floorf(image.size.height/2)];
UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake(50, 100, 200, 200)];
imageView.backgroundColor=[UIColor redColor];
imageView.image=image;
[self.view addSubview:imageView];
}