0

我正在使用这个可用的示例代码来创建一个简单的应用程序......我唯一需要做的就是将背景更改为我计算机上的图像。我使用的示例代码可在此处获得。我不知道在哪里以及如何实现可用于设置背景图像的代码(如下所示)。如果有人可以就如何将下面的代码合并到我正在使用的示例代码中提供一些建议,我将不胜感激。

我正在尝试将此代码实现到上面提供的应用程序代码中:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"BrainBrain.png"]];
    self.window.backgroundColor = background;
    [self.window makeKeyAndVisible];
    return YES;
}
4

1 回答 1

5

只需放置这两行

UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"BrainBrain.png"]];
self.window.backgroundColor = background;

进入application:didFinishLaunchingWithOptions:launchOptions:你的方法AppDelegate

于 2013-01-27T19:03:43.773 回答