我怎样才能证明文本或让它停止分隔 UITextview 中的单词?
How can I justify the text or make it stop separating the words in a UITextview?
我有一个带有聊天功能的应用程序,它的设计是用 objective-c 中的代码进行的,但是在对话中,文字是错误的。我如何调整文本或为 UItextview 做一种自动换行?
我添加了一个HypherationFactor为1,但问题没有解决,只是修复了一些。试了一段时间还是做不到。
_textView=[[UITextView alloc] init];
[_textView setTextContainerInset:UIEdgeInsetsZero];
_textView.textContainer.lineFragmentPadding = 0;
_textView.dataDetectorTypes=UIDataDetectorTypeAll;
_textView.font=[UIFont systemFontOfSize:17];
_textView.textColor=kTextColor;
_textView.layoutManager.hyphenationFactor = 1;
_textView.backgroundColor=[UIColor clearColor];
_textView.scrollEnabled=NO;
_textView.editable=NO;
我希望文字被理解;例如:温度
真的
你只需要在你的textView代码中添加一行代码。
textView.textContainer.lineBreakMode = NSLineBreakByWordWrapping;
我有一个带有聊天功能的应用程序,它的设计是用 objective-c 中的代码进行的,但是在对话中,文字是错误的。我如何调整文本或为 UItextview 做一种自动换行?
我添加了一个HypherationFactor为1,但问题没有解决,只是修复了一些。试了一段时间还是做不到。
_textView=[[UITextView alloc] init];
[_textView setTextContainerInset:UIEdgeInsetsZero];
_textView.textContainer.lineFragmentPadding = 0;
_textView.dataDetectorTypes=UIDataDetectorTypeAll;
_textView.font=[UIFont systemFontOfSize:17];
_textView.textColor=kTextColor;
_textView.layoutManager.hyphenationFactor = 1;
_textView.backgroundColor=[UIColor clearColor];
_textView.scrollEnabled=NO;
_textView.editable=NO;
我希望文字被理解;例如:温度 真的
你只需要在你的textView代码中添加一行代码。
textView.textContainer.lineBreakMode = NSLineBreakByWordWrapping;