如何仅在主要的UinavigationController中添加图像?

发布于 2024-12-05 06:38:04 字数 385 浏览 0 评论 0原文

我可以选择在我正在处理的应用程序中打印,

如果我添加了将图像添加到NavigationBar中的代码,则可以在此处添加问题...

@implementation UINavigationBar (UINavigationBarCategory)  

- (void)drawRect:(CGRect)rect  
{  
      UIImage *image = [UIImage imageNamed:@"image.png"];  

      [image drawInRect:rect];  
}  

@end  

它还将图像添加到我的UiprintController弹出窗口上的NavigationBar 。

如何防止这种情况发生?

I have the option to print in the app I am working on which is where I am getting my issue

If I add in the code for adding an image to the NavigationBar...

@implementation UINavigationBar (UINavigationBarCategory)  

- (void)drawRect:(CGRect)rect  
{  
      UIImage *image = [UIImage imageNamed:@"image.png"];  

      [image drawInRect:rect];  
}  

@end  

It also adds the image to the navigationBar on my UIPrintController popup view.

How do I prevent this from happening?

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

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

发布评论

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

评论(1

罪歌 2024-12-12 06:38:04

仅将该类别放置在您希望其影响的文件中,确保它不会在任何位置导入到弹出视图中。

Place that category only in the file that you want it to affect, make sure it isn't getting imported into the popup view at any place.

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