我正在尝试完全证明并允许在 NSAttributedString 中使用连字符。现在我使用代码设置段落样式:
NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
paragraph.alignment = NSTextAlignmentJustified;
paragraph.hyphenationFactor = 0.5;
paragraph.lineBreakMode = NSLineBreakByWordWrapping;
这不会连字符,它只是根据单词的适合程度来拆分单词。我也尝试过 NSLineBreakByCharWrapping ,结果更糟。有任何想法吗?我正在使用 iOS 6 库。
谢谢,皮特