gpt4 book ai didi

iphone - 在 main.m 中设置的自定义背景图像在整个应用程序中使用?

转载 作者:行者123 更新时间:2023-11-29 04:59:16 25 4
gpt4 key购买 nike

如何向 main.m 添加将在整个应用程序及其所有 View 中使用的自定义图像(或十六进制颜色)?

最佳答案

不要在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 方法中的 subview 。

关于iphone - 在 main.m 中设置的自定义背景图像在整个应用程序中使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7322744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com