2010-09-20 43 views
0

我有大量的麻煩了解如何使用自定義UITableViewCells填充分組的UITableView。任何人都可以向我指導一個關於如何做到這一點的教程?或者是否有人在創建帶有自定義UITableViewCells的分組UITableView時使用cellForRowAtIndexPath方法的示例?分組的UITableView接口生成器示例/教程

謝謝。

回答

0

這裏有一些準則:

您的每一個在分組的UITableView組是一個部分。然後,該方法:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
    if (indexPath.section == 0) { 
     // Here is first group 
     if (indexPath.row == 0) { 
     // Here is first row in a first group 
     } 
    } 
} 

我希望這是有道理的,你