I'd like to have an image to far left on my Navigation Bar, but I don't want it to function as a button, just an image really for branding purposes (well really just showing a version of my launch icon), so I'm doing this:
UIImageView *iconView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"48 v3.png"]];
UIBarButtonItem *icon = [[UIBarButtonItem alloc] initWithCustomView:iconView];
self.navigationItem.leftBarButtonItem=icon;
Which works fine. (releases not shown).
But my question is really whether this is appropriate in Apple's eyes. I haven't seen a lot of apps do this, but I have seen plenty that use a titleView that is custom and has an image. It just seems that the leftBarButtonItem placement is a good spot for a little branding icon.
What are people's thoughts on this, is it a violation of Apple's UI guidelines? Anybody get rejected for this?? How about size of the image?