2011-09-12 38 views

回答

4

下载从这里source code .. 这从苹果的演示样本...

快乐编码...从这里

2

下载source code。它是来自Apple本身的演示应用程序。你会发现如何在这个样本中完成你的需求。

0

你可以用水平检查,你只需额外添加一列以区分B/W部和分段例如

int level = (it may be 1 for section and 2 for subsection) 
if(level == 1){ 
    cell.textLabel.text = @"WA" 
} 
else{ 
    cell.textLabel.text = @" Metro" //give extra space 
} 
相关问题