gpt4 book ai didi

objective-c - 如何为特定 View 的导航栏设置自定义背景图像

转载 作者:行者123 更新时间:2023-12-04 04:56:10 24 4
gpt4 key购买 nike

我在应用程序 delegate.m 中使用此代码:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:  (NSDictionary *)launchOptions {
// Rename "specialNavBar.png" to the file name of your specific navigation bar background image.
UIImage *special = [UIImage imageNamed:@"movBar.png"];

// Rename "SpecialViewController" to the class name that you want to have a different navigation bar for.
[[UINavigationBar appearanceWhenContainedIn:[MovableViewController class], nil] setBackgroundImage:special
forBarMetrics:UIBarMetricsDefault];

// Override point for customization after application launch.
return YES;

}

APP 崩溃并给我这个错误信息:

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<MovableViewController 0xa17eb90> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key navBar.' * First throw call stack: (0x1d11012 0x11f3e7e 0x1d99fb1 0xc9fe41 0xc215f8 0xc210e7 0xc4bb58 0x355019 0x1207663 0x1d0c45a 0x353b1c 0x2187e7 0x218dc8 0x218ff8 0x219232 0x1683d5 0x16876f 0x168905 0x171917 0x13596c 0x13694b 0x147cb5 0x148beb 0x13a698 0x1f4adf9 0x1f4aad0 0x1c86bf5 0x1c86962 0x1cb7bb6 0x1cb6f44 0x1cb6e1b 0x13617a 0x137ffc 0x276d 0x2695) libc++abi.dylib: terminate called throwing an exception

最佳答案

您可以像这样在导航栏中添加自定义图像。

_window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
UIImage *special = [UIImage imageNamed:@"movBar.png"];
[_window.rootViewController.navigationController.navigationBar setBackgroundImage:special forBarMetrics:UIBarMetricsDefault];

关于objective-c - 如何为特定 View 的导航栏设置自定义背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16720879/

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