I've run out of places to look for why my image will not display in the tab bar controller.
Whether I use Inkscape, Pixelmator, or an antique version of Paint Shop Pro to create and then export the PNG, I get a blue, highlighted square of nothingness or a dull gray square of nothingness. All are 30 x 30, but white on black, black on white, color, no color, none of it seems to have an effect.
As near as I can tell, I'm doing it right : http://osmorphis.blogspot.com/2009/02/tab-bar-icons-part-1_4115.html
And this question didn't resolve the issue: http://stackoverflow.com/questions/1330246/adding-tabbar-controller-icon-iphone
Here's the code from applicationDidFinishLaunching:
<// diagnostic>
UIImage *image = [UIImage imageNamed:@"outToLunch.png"];
if (!image) {
NSLog(@"AppDelegate: 404");
}
myVC.tabBarItem.image = [UIImage imageNamed: @"outToLunch.png"];>
I'm equally receptive to a good laugh or to "Oh. I didn't know that ..."
Thanks!