起初我认为这很容易,但我没有找到办法。
我正在制作一个 UITextView 来显示一些文本内容,有些作品很长。因此,默认情况下 textView.textAlignment,有些行留下大空白,因为下一个单词很长。像这样:
I'm typing some words here
to explain long word
willcause big blank
because in UITextView. It
makes some line left big
blank.
我想要的是通过剪切单词来换行,这是一种非常古老的风格,但我仍然想要它,就像这样:
I'm typing some words here
to explain long word will-
cause big blank because in
UITextView. It makes some
line left big blank. I wa-
nt the line break by word
and just add '-' in the b-
reaking word.
起初我看到 UILabel 有 lineBreakMode 属性,但我发现 UITextView 根本没有它。我现在做的是对 textView.textAlignment 使用 NSTextAlignmentJustified,但它也会导致单词之间出现很大的空白。
是否可以以“剪字”方式显示?
谢谢。