我想实现这样的目标
主要是出于教学目的,是我不知道的UITableView方法,还是某种技巧。
最佳答案
如果要进行相同类型的查看(如上图所示),请在该部分的页脚中放置一个标签,使标签的背景透明,并根据您的选择设置其框架并添加想要的文本放在那边。让我给您一个代码片段,可能会对您有所帮助。
UILabel *tableFooter = [[UILabel alloc] initWithFrame:footerRect];
tableFooter.textColor = // add color of your choice
tableFooter.backgroundColor = // add color of your choice
tableFooter.opaque = YES;
tableFooter.font = [UIFont boldSystemFontOfSize:15];
tableFooter.text = @" add text of your choice";
self.theTable.tableFooterView = tableFooter;
[tableFooter release];
将上面的代码放入此方法中:
- (UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
关于iphone - 如何在UITableView的背景 View (主要是指令)中编写,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19381396/