I am new to ios development.
I created UITabbar programatically and set its delegate to self. All functions well. But my tabbar consists three tab bar items. I have given different images to the different tab bar items. But they all shows another image.
This is my code:
UITabbarItem item1 = [[UITabBarItem alloc] initWithTitle:@"item1" image:[UIImage imageNamed:@"imagename"] tag:1];


[tabBar setItems:tabItemsArray];– Midhun MP Jan 17 at 5:40