gpt4 book ai didi

ios - UINavBar 将图像拉伸(stretch)到边缘

转载 作者:行者123 更新时间:2023-12-01 18:22:35 25 4
gpt4 key购买 nike

我尝试使用图像作为导航栏背景,但无法到达边缘:

enter image description here

我设置的图像尺寸是 320 x 44 和 640 x 88。

这是设置它的代码:

self.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"navBar.png"]];

最佳答案

它将适用于整个应用程序。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UINavigationBar *navigationBar = [UINavigationBar appearance];
UIImage *image = [UIImage imageNamed:@"navBar.png"];
[navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
}

关于ios - UINavBar 将图像拉伸(stretch)到边缘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16326319/

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