gpt4 book ai didi

iphone - 向 UITabBarController 添加背景图像

转载 作者:行者123 更新时间:2023-12-03 21:22:55 25 4
gpt4 key购买 nike

这是我从谷歌搜索得到的结果,但显然这不是我需要的:

- (void)applicationDidFinishLaunching:(UIApplication *)application 
{
// add the tab bar controller to the window

[window addSubview:[tabBarController view]];

// load the image, create a view with the image

NSString* dirPath = [[NSBundle mainBundle] bundlePath];
NSString* imageFile = [dirPath stringByAppendingString:@"homebackground.png"];
UIImageView* view = [[UIImageView alloc] initWithImage: [UIImage imageNamed:imageFile]];

[[tabBarController tabBar] addSubview: view];
}

是的,图像文件加载良好..我认为上面的作用是尝试更改选项卡栏导航栏区域的背景?我不确定。

有谁知道我将如何用图像更改实际背景?谢谢!

最佳答案

尝试使用索引 0 通过 insertSubview:atIndex: 将图像显式添加为最低层。

编辑:此线程中有一个针对 UITabController 的显式 setBackgroundImage 类别:

Share background view between tabs on a UITabBarController

关于iphone - 向 UITabBarController 添加背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3121194/

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