我在我的代码中执行以下操作来更改后退按钮的字体:
[[UIBarButtonItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,[UIFont fontWithName:@"Freshman" size:13.0f],UITextAttributeFont, nil] forState:UIControlStateNormal];
但是“Back”这个词尴尬地朝向后面按钮的顶部,而不是像通常那样居中以适应它。我说的是关于顶部和底部的中心,而不是从右到左。我怎样才能解决这个问题?我似乎只能使用UITextAttributeShadow更改Shadow和ShadowOffset,所以我不知道如何让它看起来居中。
感谢任何帮助!
答案 0 :(得分:4)
尝试这样的事情:
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, 10) forBarMetrics:UIBarMetricsDefault];
请检查Reference文档