アプリの背景画像を中央に配置する方法を検討してきました。これは主に、正方形の画像を使用して、保存するリソースの量を削減できるようにするためです(変更が加えられたときに更新します)。
質問する
315 次
1 に答える
1
これは私が結果を達成するために使用したコードです
// Create the window covering the bounds of the entire screen
self.window = [ [ [ UIWindow alloc ] initWithFrame:[ [ UIScreen mainScreen ] bounds ] ] autorelease ];
// Set the background for the game. This will show on the flip transition.
UIImageView *bg = [ [ UIImageView alloc ] initWithImage: [ UIImage imageNamed: @"Background.png" ] ];
bg.frame = self.window.bounds;
bg.contentMode = UIViewContentModeCenter;
[ self.window addSubview: bg ];
[ self.window sendSubviewToBack: bg ];
[ bg release ];
于 2013-01-29T10:53:31.637 に答える