私はuitableviewを作成しました。すべてのセルにtextLabelがあります。textlabelセルの異なる行のテキストサイズを変更するuitableview
cell.textLabel.numberOfLines = 0;
cell.textLabel.text = [NSString stringWithFormat:@"Hello\n how are you?"];
UIFont *myFont = [ UIFont fontWithName: @"Novel" size: 6.0 ];
cell.textLabel.font = myFont;
「こんにちは」のフォントを10に設定し、「どうですか?」というフォントを設定できますか? 〜6?
ありがとうございました!
可能なdupの - http://stackoverflow.com/questions/1417346/iphone-uilabel-containing-text-with-multiple-fonts-at-the-same-time – rishi