what is the resolution of the image for tab bar item? and also please provide some other usefull information regarding that tab item image.
Thanks in advance.
|
what is the resolution of the image for tab bar item? and also please provide some other usefull information regarding that tab item image. Thanks in advance. |
||||
|
|
|
The documentation says that the tab bar image is usually 30x30, but I've found that the best size to setup the images is 48x32 pixels. This size still renders and gives you a bit more space. The image is a PNG with transparency, only the mask is used. The UI renders the mask gray when unselected or blue/chrome when selected. |
|||
|
|
|
|
|||
|
|
|
This statement is technically incorrect: "...only the mask is used. The UI renders the mask gray when unselected or blue/chrome when selected..." You are not supplying any type of mask. Rather, the tab image should simply be a monochrome .png image, aka a only 1 color used. If you provide a colored image, UIKit will quantize it down to a monochrome image. In the worst case the color image will be ~8000 bytes, which is a waste of ~6k (retina). The file format must be 24-bit .png with transparency for the quantization to work properly. Even though this is a color file format, don't use the color or you're wasting space. Bottom line is to have the right size, with the best performance and memory usage, use one of these: Standard display Retina display
|
||||
|
|
|
Check the "UITabBarItem Class Reference" in the SDK documentation |
|||||||
|