NSAttributedString具有两个不同的文本对齐方式

时间:2017-12-15 20:03:51

标签: ios swift nsmutableattributedstring nsattributedstringkey

我正在尝试使用attributionText在UILabel中显示一些文本,其中包含2个不同的文本对齐方式。我从Firebase&获取值它们是关键和价值类型。出于某种原因,我无法将标题左对齐,副标题对齐。任何帮助表示赞赏。

module topLevel(output [1:0] Output);

    wire[1:0] PC;

    sum s1();

    assign Output = PC;


endmodule


module sum();

    assign topLevel.PC = 2'b11;

endmodule

我得到的结果是“Titlesubtitle”类型

我看过这里,Attributed text with two text alignments,但这对我没什么帮助。

我试图获得与App Store相同的效果,但不是

卖家..................... Facebook Inc.,我正在

SellerFacebook Inc。

img_5752

1 个答案:

答案 0 :(得分:0)

我使用@vadian所提供的正确细节样式的细胞来解决问题。

let cell = UITableViewCell(style: .value1, reuseIdentifier: "CellId")

谢谢!