2010-11-19 16 views

答えて

16

あなたcellForRowAtIndexPathメソッドでこのような何かを試してみてください:

//Configure the cell... 
cell.textLabel.font = [UIFont systemFontOfSize:14]; //Change this value to adjust size 
cell.textLabel.numberOfLines = 2; //Change this value to show more or less lines. 
cell.textLabel.text = @"This is my text"; 
+1

私が探しているもの!ありがとう – Yongzhi

0

私はこれがあなたの質問に答えるが、あなたのcellForRowAtIndexPathデリゲートの内側にあなたがUIFontにcell.textLabelfontを設定することができるかどうかわかりません。

1
//font size 
cell.textLabel.font = [UIFont systemFontOfSize:14]; 
関連する問題