我在uitableview中为每个部分提供了动态单元格和动态标题视图。我们是否启用了标题滚动以及tableview单元格?
答案 0 :(得分:29)
将表格样式更改为xib中的Grouped。
答案 1 :(得分:0)
如果我们必须为iOS 6和&amp ;;显示相同的UI方法7我们在scrollview委托中使用了上述内容。
答案 2 :(得分:-2)
添加实际拥有的部分数量的两倍。让偶数段只有段标题,而奇数段只应有没有段标题的行。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return double the number of sections.
return ([_arrSection count]*2);
}
和..
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//Even Sections will have only header and no rows
if(section%2 == 0)
return 0;
//Number of rows return only is the section is expanded else return 0
return [arrRowsForSpecificSection count];
}
和...
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
//Odd sections will have no header
if(section%2 == 1)
return 0;
//for even sections
return HEIGHT_FOR_SECTION_HEADER;
}
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
//Odd section will have no header
if(section%2 == 1)
return NULL;
//even section will have header
return Header_View;
}
因此,在运行时,它给人的印象是它是当前部分的标题,滚动而不固定在顶部。流畅的动画!!!!干杯