是否可以根据设置更改启动图像?

发布于 2024-10-21 05:36:57 字数 123 浏览 0 评论 0原文

在我的应用程序项目的资源中,我有 Default.png,它是我的应用程序启动图像。

由于设置捆绑包,用户可以更改启动视图,所以我的问题是找到一种方法来在用户更改设置时拾取另一个启动图像。

有办法吗?

In the resources of my app project I have Default.png that is my app launch image.

Thanks to the settings bundle, the user can change the start up view, so my problem is finding a way to pick up another launch image if the user changes the settings.

Is there a way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见你 2024-10-28 05:36:57

不可以,您无法更改应用程序包内的文件。

但可以找到另一个简单的解决方案 - 为此,只需在启动应用程序后显示具有所选默认屏幕的视图,然后在 5 秒后显示主视图:

+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)seconds target:(id)target selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)repeats

[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(showMainView) userInfo:nil repeats:NO];

No, you can't change files inside your app bundle.

But it's possible to find another easy solution - for this just show a view with the selected Default-Screen after launching your app and then after e.g. 5 seconds show your main view:

+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)seconds target:(id)target selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)repeats

[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(showMainView) userInfo:nil repeats:NO];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文