0

プリセット UIColor テクスチャにアクセスして、背景として設定する方法はありますか? このような並べ替え:

UIColor *mytexture = [UIColor scrollViewTexturedBackgroundColor];
UIImage *myimage = [UIImage imageWithData:mytexture];
[outletWallpaper setImage:myimage];

前もって感謝します、デクラン

4

2 に答える 2

0

backgroundColorビューの を必要なテクスチャ カラーに設定するだけです。

outletWallpaper.backgroundColor = [UIColor scrollViewTexturedBackgroundColor];

さらに、独自の画像を読み込んでUIColour[UIColour -colorWithPatternImage:]APIを使用して使用することもできます。

UIImage *myImage = [UIImage imageNamed:@"anImageFile"];
UIColour colourPattern = [UIColor colorWithPatternImage: myImage];

outletWallpaper.backgroundColor = colourPattern;
于 2013-11-08T16:28:44.793 に答える