¿Hay alguna forma de cambiar la posición del texto en UITabBar o UITabBarItem?


introduzca la descripción de la imagen aquí

Esta es una barra de pestañas personalizada que tenía la intención de poner en la pantalla. Sin embargo, mi pareja quiere que el texto sea ligeramente hacia arriba. ¿Cómo puedo hacerlo?

Author: Srikar Appalaraju, 2012-11-29

5 answers

¿Por qué simplemente no tiene una propiedad de título vacía para su controlador de vista y agrega el título a sus imágenes personalizadas para la pestaña?

ACTUALIZACIÓN: En aras de la integridad de la respuesta; de los comentarios y ios tabbar poner texto en el medio cuando no hay imagen

[tab.tabBarItem setTitlePositionAdjustment:UIOffsetMake(0, -10)]

 43
Author: Srikar Appalaraju,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-05-23 12:02:41

Probablemente quieras aplicar este desplazamiento globalmente, así que sugeriría

Obj-C

[UITabBarItem appearance].titlePositionAdjustment = UIOffsetMake(0, -4);

Swift:

UITabBarItem.appearance().titlePositionAdjustment = UIOffset(horizontal: 0, vertical: -4)
 26
Author: Tim Windsor Brown,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2016-05-24 23:52:09

Aquí está el mismo truco con Interface builder:

introduzca la descripción de la imagen aquí

 8
Author: AmitP,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2015-10-25 16:10:23

Puede hacerlo directamente desde Interface Builder (Desplazamiento personalizado en la posición de título), así: enlace

 5
Author: kamil3,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2016-11-22 22:35:33

He encontrado la respuesta aquí: ios tabbar poner texto en el medio cuando ninguna imagen intentará este y ver cómo va :)

Actualización: funciona. Sólo 1 línea de código.

 0
Author: Sharen Eayrs,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-05-23 11:47:04