4

onCustomCellの代わりに使用しています。UITableViewCellUITableView

2つUILablesつけましたCustomCell

このサイトを参照しました: here、しかし失敗しました...

質問 : UILabels の行間隔を制御するにはどうすればよいですか?

4

2 に答える 2

13

から始めて、属性付き文字列を にiOS 6設定できます。以下を確認してください。UILabel

NSMutableParagraphStyle *paragrahStyle = [[NSMutableParagraphStyle alloc] init];
[paragrahStyle setLineSpacing:40];
[attributedString addAttribute:NSParagraphStyleAttributeName value:paragrahStyle range:NSMakeRange(0, [labelText length])];

cell.label.attributedText = attributedString;
于 2013-04-12T05:25:43.677 に答える