I need to show image(Logo) which is below the navigation bar in all my pages.
i am implementing
@implementation UINavigationBar (CustomImage)
(void)drawRect:(CGRect)rect
{
UIImage *image = [UIImage imageNamed: @"logo.png"];
[image drawInRect:CGRectMake(self.frame.size.width/2, 40, 89, 42)];
}
in appdelegate
it won't work out .Is this possible to use image globally or any other better way?
