我想使用为我的标签设置文本方向NSMutableAttributedString
。例如,我有聊天视图,其中包含消息和时间。我想为消息设置左对齐,为时间设置右对齐UILabel
。
我使用了以下代码,但它不起作用,
NSString *Time = [Functions stringFromGivenDate:msg.time withFormate:@"hh:mm a"];
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@\n%@",msg.text,Time]];
NSDictionary *attrDictionary = @{NSWritingDirectionAttributeName:@[@(NSTextWritingDirectionOverride)]};
[str addAttributes:attrDictionary range:NSMakeRange(msg.text.length+1, Time.length)];