以编程方式将图像添加到 UINavigationBar

发布于 2024-10-01 07:29:52 字数 316 浏览 1 评论 0原文

我有一个以编程方式实例化的 UINavigationController。 有没有办法将背景设置为图像(在许多网站上是如何完成的)而不是标准文本。

我通过重写 GRect 找到了一些代码,但它曾经被调用过

-(void)drawRect:(CGRect)rect {

CGRect currentRect = CGRectMake(0,15,200,25);
UIImage *image = [UIImage imageNamed:@"topHeader.png"]; [image     
drawInRect:currentRect]; }

I have a UINavigationController that I instantiated programatically.
Is there a way to set the background to an image (how its done on many sites) instead of standard text.

I have found some code by overriding GRect but it ever gets called

-(void)drawRect:(CGRect)rect {

CGRect currentRect = CGRectMake(0,15,200,25);
UIImage *image = [UIImage imageNamed:@"topHeader.png"]; [image     
drawInRect:currentRect]; }

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

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

发布评论

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

评论(1

寄意 2024-10-08 07:29:52

在根视图控制器的 .m 文件中定义 -drawRect: 定义,如下所示:

@implementation UINavigationBar (CustomImage)

-(void)drawRect:(CGRect)rect {

CGRect currentRect = CGRectMake(0,15,200,25);
UIImage *image = [UIImage imageNamed:@"topHeader.png"]; [image     
drawInRect:currentRect]; }

@end

Define your -drawRect: definition like this in your root view controller's .m file:

@implementation UINavigationBar (CustomImage)

-(void)drawRect:(CGRect)rect {

CGRect currentRect = CGRectMake(0,15,200,25);
UIImage *image = [UIImage imageNamed:@"topHeader.png"]; [image     
drawInRect:currentRect]; }

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