onCustomCell
の代わりに使用しています。UITableViewCell
UITableView
2つUILables
つけましたCustomCell
。
このサイトを参照しました: here、しかし失敗しました...
質問 : UILabels の行間隔を制御するにはどうすればよいですか?
onCustomCell
の代わりに使用しています。UITableViewCell
UITableView
2つUILables
つけましたCustomCell
。
このサイトを参照しました: here、しかし失敗しました...
質問 : UILabels の行間隔を制御するにはどうすればよいですか?
から始めて、属性付き文字列を に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;