在我的故事板中,我有一个 UITableView 并且它具有以下属性
Style: Grouped
Content: Dynamic Prototypes
我的问题是如何制作不同的组。当我现在运行该应用程序时,没有白色背景(只有默认的衬里背景),文本位于顶部。另外,如果我随后创建了这些动态组,我将如何设置它们的页眉和页脚?
谢谢
在我的故事板中,我有一个 UITableView 并且它具有以下属性
Style: Grouped
Content: Dynamic Prototypes
我的问题是如何制作不同的组。当我现在运行该应用程序时,没有白色背景(只有默认的衬里背景),文本位于顶部。另外,如果我随后创建了这些动态组,我将如何设置它们的页眉和页脚?
谢谢
- (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;
}
我想对你会有帮助