想知道如何在UIButton标题标签中自上而下设置文本。
文本是“按我”
想要展示
"
p
r
e
s
s
m
e
"
我做了这个
CGAffineTransform newTransform = CGAffineTransformMakeRotation(90 * (M_PI / 180));
self.activeButton.transform = newTransform;
但它只改变了按钮方向而不是文本
答案 0 :(得分:3)
将文字旋转为垂直不同于将每个字母写在一个单独的行上,这就是我从你的问题中收集的意图。
要做到这一点,你需要在一个单独的行上写下每个字母!您可以在界面生成器的文本字段中按Enter键的同时按住Alt / Option在UIButton文本中创建新行。请注意,这必须是“工具”面板中的文本字段属性,如果您通过双击按钮编辑文本,则无法添加新行。
完成此操作后,将“换行”模式更改为“字符换行”或“自动换行”,以使其显示多行。
编辑:我意识到你可能正试图在代码中使用你的按钮,所以我写了这篇文章应该将常规按钮的文本转换为垂直间隔,逐个字母:
// Create a temporary NSString to store the new formatted text string
// Set it to the first character so we can have a simple loop from the second to the last character
NSString *newText = [NSString stringWithFormat:@"%C",[button.titleLabel.text characterAtIndex:0]];
for(int i=1;i<button.titleLabel.text.length;i++) {
// Format newText to include a newline and then the next character of the original string
newText = [NSString stringWithFormat:@"%@\n%C",newText,[button.titleLabel.text characterAtIndex:i]];
}
// We must change the word wrap mode of the button in order for text to display across multiple lines.
button.titleLabel.lineBreakMode = NSLineBreakByCharWrapping;
// .. and for an unknown reason, the text alignment needs to be reset. Replace this if you use something other than center alignment.
button.titleLabel.textAlignment = NSTextAlignmentCenter;
// newText now contains the properly formatted text string, so we can set this as the button label
[button setTitle:newText forState:UIControlStateNormal];