Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have a custom tab bar and each buttonitem is a custom button. However the top is at the very edge. Is there anyway I can push this down?
Figured it out
[self setImageInsets:UIEdgeInsetsMake(6, 0, -6, 0)];
(This is placed in a UITabBarItem subclass)