How to change the UItabbar icon image?

12,399

k you use this code and used your own images not the built in one's used your images...

- (id)init {
UIImage* anImage = [UIImage imageNamed:@"newspaper.png"];
UITabBarItem* theItem = [[UITabBarItem alloc] initWithTitle:@"News" image:anImage tag:0];
self.tabBarItem = theItem;
[theItem release];
return self;  }

newspaper.png is my own image in the tab bar...

k fine now this will be sufficient for your problem...

Share:
12,399
Faheem Rajput
Author by

Faheem Rajput

Updated on July 16, 2022

Comments

  • Faheem Rajput
    Faheem Rajput almost 2 years

    I am working on an app and want to customize the UItabbar icon image.

    I have an image with name about.png this image i want to set as left icon image of my app's UItabbar. how can i do this?