代码之家  ›  专栏  ›  技术社区  ›  ghiboz

iPhone UITableView按代码设置描述

  •  0
  • ghiboz  · 技术社区  · 14 年前

    我使用分组样式创建了UITableView。

    我希望通过我的代码为我的表中的部分设置描述。

    谢谢!

    1 回复  |  直到 14 年前
        1
  •  2
  •   gnasher    14 年前

    您需要详细阐述您的问题,但我建议您从下表的委托方法开始:

    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
        return <sectionName for section>;
    }
    

    替换为代码以访问节的正确名称。