I have a tabbar application created using Interface builder. When I try to set Custom
Image for tabBar Item does not show up.
Can Anyone Please help me in this?
Thanks in Advance
I have a tabbar application created using Interface builder. When I try to set Custom
Image for tabBar Item does not show up.
Can Anyone Please help me in this?
Thanks in Advance
you could programmatically set the image with the following line of code
UITabBarItem* theItem = [[UITabBarItem alloc] initWithTitle:@"Home" image:anImage tag:0];
Alterative:
You can drag and drop a image into your resourses folder and then in interface builder goto the TabBar items attributes change the image to the image to dropped into the resourses folder.