动态分组表格单元格

时间:2012-05-23 08:30:33

标签: objective-c cocoa

在我的故事板中,我有一个UITableView,它有以下属性

Style: Grouped
Content: Dynamic Prototypes

我的问题是如何制作不同的群体。当我立即运行应用程序时,没有白色支持(仅限默认的衬里背景),文本放在顶部。另外,如果我然后创建了这些动态组,我将如何设置其页眉和页脚?

由于

1 个答案:

答案 0 :(得分:0)

  - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 2;

    }
    -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{

        // implement your code

    }
    -(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{

        //implement your code
    }
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

     /// Write basic code//

switch (indexPath.section) {
        case 0:
//It belongs to  first group and implement your code.
               break;
        case 1:
//It belongs to second group and implement your code.
               break;


}

我认为这会对你有所帮助