只是想问你是否有一种简单的方法在UITableViewController中的部分之间添加描述文本? 您可以在iPhone / iPod的“设置>常规>键盘”中查看我想要做的事情。
答案 0 :(得分:1)
部分页脚通常用于描述。因此,在UITableViewDataSource
的子类中实现以下UITableViewController
方法:
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
了解更多信息see the documentation。