我在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 +中实现这个自动换行?
答案 0 :(得分:4)
首先,我认为你的textview看起来有点奇怪。右边也不应该留有余量吗?现在它看起来像textview继续向右。框架是正确的还是你对textContainerInset做了什么?
无论如何要回答关于更改换行符的问题:textview的textContainer属性有一个lineBreakMode,可以设置为NSLineBreakByWordWrapping。我认为应该解决它