UITextView
我希望在包含一些文本的内部绘制一条可自定义的线(使用NSAttributedString
)
这是我尝试过的
NSString *unicodeStr = [NSString stringWithFormat:@"%C%C%C", 0x00A0, 0x0009, 0x00A0]; //nbsp, tab, nbsp
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:unicodeStr];
NSRange strRange = NSMakeRange(0, str.length);
NSMutableParagraphStyle *const tabStyle = [[NSMutableParagraphStyle alloc] init];
tabStyle.headIndent = 16; //padding on left and right edges
tabStyle.firstLineHeadIndent = 16;
tabStyle.tailIndent = -16;
NSTextTab *listTab = [[NSTextTab alloc] initWithTextAlignment:NSTextAlignmentCenter location:40 options:@{}]; //this is how long I want the line to be
tabStyle.tabStops = @[listTab];
[str addAttribute:NSParagraphStyleAttributeName value:tabStyle range:strRange];
[str addAttribute:NSStrikethroughStyleAttributeName value:[NSNumber numberWithInt:2] range:strRange];
但是,无论我为制表位位置(在本例中为 40)和 tailIndent(此处为 -16)提供什么值,该行仅尊重 headIndent 并跨越整个 UITextView 宽度(当然减去 headIndent)。
编辑- 我很确定问题是因为我没有使用正确的 unicode 字符(尽管它们似乎是合乎逻辑的选择)。万一这给了某人一个提示,如果我在第二个 nbsp 之后添加一个空格,即接近尾声,则标签限制为单个标签长度