I am using a UITabBarController in my application (for iPhone 5). When i am trying to set an image on the TabBAr, the image shows a line. I have seen two questions similar to mine, but did not understand the solution.
Here's how I am adding the image:
UIImageView *tabBarView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tab_mypeople.png"]];
tabBarView.frame = CGRectMake(0, -15, 320, 64);
[tabBarController.tabBar addSubview:tabBarView];
The dimensions of my current image is 320X64 pixels. How to resolve this issue??
In iOS 6 and aboove the UITabBar has a shadow image, if you want to disable it you can just call
yourTabBar.shadowImage = [UIImage new]
.In your case
tabBarController.tabBar.shadowImage = [UIImage new]