2011-09-12 40 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 
} 
相關問題