最好点覆盖navigationController的navigationBar属性

发布于 2024-09-03 08:37:21 字数 384 浏览 4 评论 0原文

我正在覆盖 UINavigationController,以将默认的 navigationBar 属性替换为我自己的 UINavigationBar 子类的实例。所以我尝试了类似

_navigationBar = [[SBNavigationBar alloc] init];

-initWithRootViewController: 的方法。但这并没有像我预期的那样进行。仍然显示默认的 navigationBar

那么覆盖 navigationBar 的最佳点是什么?

提前致谢
–f

I'm overwriting UINavigationController to replace the default navigationBar property with an instance of my own subclass of UINavigationBar. So I tried something like

_navigationBar = [[SBNavigationBar alloc] init];

in my -initWithRootViewController:. But that didn't work out as I expected it. There's still the default navigationBar being displayed.

So what's the best point to overwrite the navigationBar?

Thanks in advance
–f

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

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

发布评论

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

评论(1

素染倾城色 2024-09-10 08:37:21

如果您检查文档 http://developer .apple.com/iphone/library/documentation/uikit/reference/UINavigationController_Class/Reference/Reference.html,您会看到 navigationBar 属性是只读< /强>。

例如,要拥有自定义navigationBar,您可以使用“类别”。您会在 stackoverflow 上找到许多可以回答这个问题的问题。

一个简单的版本是将图像放入 drawRect: 中,如下所示......

@implementation UINavigationBar (Custom)

- (void)drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed: @"bg_toolbar.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

@end

If you check the documentation http://developer.apple.com/iphone/library/documentation/uikit/reference/UINavigationController_Class/Reference/Reference.html, you'll see that the navigationBar property is read-only.

To have a custom navigationBar you can use Categories for example. You will find many questions answering this here on stackoverflow.

One simple version is putting an image in drawRect: like so...

@implementation UINavigationBar (Custom)

- (void)drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed: @"bg_toolbar.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

@end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文