如何在 UITextView 中自动换行?
Posted
技术标签:
【中文标题】如何在 UITextView 中自动换行?【英文标题】:How to word wrap text in a UITextView? 【发布时间】:2014-11-23 07:49:18 【问题描述】:我有一个包含在 UIScrollView 中的 UITextView。 UITextView 是根据 UISegmentedControl 动态加载的,但我不知道如何自动换行,所以单词移动到下一行。
.m:
@interface Tester ()
UITextView *sponsor;
- (void)viewDidLoad
[super viewDidLoad];
// Do any additional setup after loading the view.
sponsorInfo = [ [UITextView alloc] initWithFrame:self.sponsorsScrollView.frame];
[sponsor setEditable:NO];
- (IBAction)control:(UISegmentedControl *)sender
if (self.sponsorSegmentedControl.selectedSegmentIndex == 0)
[self changeGenericAbout:self.cellIndex];
else
//
- (void)changeGenericAbout:(int)index
if (index == 0)
sponsorInfo.text = @"[text in screen shot]";
[sponsor sizeToFit];
[self.sponsorsScrollView addSubview:sponsor];
如何在 ios 7+ 中实现这种自动换行?
【问题讨论】:
使用 attributesText 将文本设置为 UITextView。 【参考方案1】:首先,我认为您的 textview 看起来有点奇怪。右边不应该也有边距吗?现在它看起来像 textview 继续向右。框架是否正确或您对 textContainerInset 做了什么?
无论如何要回答有关更改换行符的问题:textview 的 textContainer 属性有一个 lineBreakMode,可以设置为 NSLineBreakByWordWrapping。我认为应该可以解决它
【讨论】:
UITextView 不包含 lineBreakMode 属性。您正在考虑一个 UILabel,我没有使用它。 不,UITextView 没有,但 UITextView 的NSTextContainer 有。 我做了一些测试,但似乎 textview 总是尝试自动换行,无论该设置如何。我会考虑查看您案例中的不同框架。我想你会在那里发现问题。 在 viewDidLoad 中,我添加了“textContainer = [[NSTextContainer alloc] initWithSize:self.sponsorsScrollView.bounds.size]; textContainer.lineBreakMode = NSLineBreakByWordWrapping;赞助商信息 = [[UITextView alloc] initWithFrame:self.sponsorsScrollView .frame textContainer:textContainer];"但现在没有文字 啊,你不应该创建一个文本容器,它带有文本视图。 textview 框架是否正确?以上是关于如何在 UITextView 中自动换行?的主要内容,如果未能解决你的问题,请参考以下文章
检测换行符以在 iOS 上的 UITextView 上自动输入换行文本