UINavigationBar 顶部的自定义徽标?

发布于 2024-08-29 02:52:24 字数 162 浏览 6 评论 0原文

我已经阅读了大量有关完整自定义 UINavigationBar 背景的请求,但我想要的是在默认 UINavigationBar 上覆盖徽标而不是文本。最好,我想将其应用到名为 CustomNavigationBar 的 UINavigationBar 子类。

I've read plenty of requests about a full-on custom UINavigationBar background, but what I want is to overlay a logo on the default UINavigationBar instead of text. Preferably, I'd like to apply it to a subclass of UINavigationBar called CustomNavigationBar.

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

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

发布评论

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

评论(2

浅唱ヾ落雨殇 2024-09-05 02:52:24

巧妙的技巧,影子。

如果您只想添加徽标而不是标题,那很简单。在您的 navigationItem 上设置 titleView,如下所示:

UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Logo"]];
self.navigationItem.titleView = imageView;
[imageView release];

Neat tricks, Shadow.

If you just want to add a logo instead of a title, that's easy. Set the titleView on your navigationItem, like so:

UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Logo"]];
self.navigationItem.titleView = imageView;
[imageView release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文