2011-09-06 5 views

答えて

1

main.mで設定しないでください。あなたのAppDelegateを使ってください。解決策は、次のようになります。

YourAppDelegate.h

YourAppDelegate : UIApplication <UIResponder> { 
     UIImageView *myGlobalBackgroundImage; 
} 

@property (nonatomic, retain) UIImageView *myGlobalBackgroundImage; 

YourAppDelegate.m

@implementation YourAppDelegate 
@synthesize myGlobalBackgroundImage; 

-.....applicationDidFinishLaunching....{ 
    myGlobalBackgroundImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"imagefilename.ext"]]; 
} 

は、その後、あなたのUIViewController内からそのIVARをつかむと、viewDidLoadメソッドでサブビューとして追加します。

関連する問題