如何仅在主要的UinavigationController中添加图像?
我可以选择在我正在处理的应用程序中打印,
如果我添加了将图像添加到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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅将该类别放置在您希望其影响的文件中,确保它不会在任何位置导入到弹出视图中。
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.