我正在尝试在我的表格视图中添加一个带有按钮的页脚视图。我在网上找到了这段代码
public override UIView GetViewForFooter(UITableView tableView, int sectionIndex)
{
// Write a method to get the proper Section via the sectionIndex
var section = GetSection(sectionIndex);
if (section != null)
{
if (section.FooterView == null && !string.IsNullOrEmpty(section.FooterText))
{
// Create your FooterView here
section.FooterView = CreateFooterView(tableView, section.FooterText);
}
return section.FooterView;
}
return null;
}
我不知道GetSection方法是什么?我遇到错误“当前上下文中不存在名称 GetSection”。
我在 MonoTouch 网站上也找不到任何合适的文档。
帮助表示赞赏。