天天看點

設定UIView 背景圖檔二方法

方法一:

UIView *theMainView  =[ [UIView  alloc] init];

UIImage *image = [UIImage imageNamed:@"bg.png"];

 UIImageView *imageView = [[UIImageView alloc] initWithImage:image] ;

 [theMainView addSubview:imageView];

方法二:

 [theMainView setBackgroundColor: [UIColor colorWithPatternImage: [UIImage imageNamed: @"bg.png"]]];

imageName 緩存,下面方法不緩存

NSString *thePath = [[NSBundle mainBundle] pathForResource:@"default" ofType:@"jpeg"];  UIImage *prodImg = [[UIImage alloc] initWithContentsOfFile:thePath"];   controller.productImg.image = prodImg;    [prodImg release];