在UITextview中创建段落

时间:2010-04-19 15:06:52

标签: iphone

是否可以将文本拆分为UITextView中的段落?

2 个答案:

答案 0 :(得分:4)

这是可能的。

示例:

UITextView *testTextView = [[UITextView alloc] initWithFrame:frame];

[testTextView setText:@"More\nBooks"];

它显示为2个字符串:

更多

图书

答案的关键是:\n - 行尾符号。

答案 1 :(得分:0)

在属性字符串中使用NSMutableParagraphStyle。 并检查其他属性而不是paragraphSpacingBefore;

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
            paragraphStyle.paragraphSpacingBefore = 33.;

_textView.attributedText = [[NSAttributedString alloc] initWithString:string attributes:@{NSParagraphStyleAttributeName: paragraphStyle}];