プリセット UIColor テクスチャにアクセスして、背景として設定する方法はありますか? このような並べ替え:
UIColor *mytexture = [UIColor scrollViewTexturedBackgroundColor];
UIImage *myimage = [UIImage imageWithData:mytexture];
[outletWallpaper setImage:myimage];
前もって感謝します、デクラン
プリセット UIColor テクスチャにアクセスして、背景として設定する方法はありますか? このような並べ替え:
UIColor *mytexture = [UIColor scrollViewTexturedBackgroundColor];
UIImage *myimage = [UIImage imageWithData:mytexture];
[outletWallpaper setImage:myimage];
前もって感謝します、デクラン
backgroundColor
ビューの を必要なテクスチャ カラーに設定するだけです。
outletWallpaper.backgroundColor = [UIColor scrollViewTexturedBackgroundColor];
さらに、独自の画像を読み込んでUIColour
、[UIColour -colorWithPatternImage:]
APIを使用して使用することもできます。
UIImage *myImage = [UIImage imageNamed:@"anImageFile"];
UIColour colourPattern = [UIColor colorWithPatternImage: myImage];
outletWallpaper.backgroundColor = colourPattern;