本文介绍了UITableViewDataSource方法,默认实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
对于
(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
如果我想为视图中的某些tableViews(而不是其他视图)实现它,是否可以返回默认实现?TIA
if I want to implement it for certain tableViews in my view, and not others, is there a way to return the default implementation? TIA
推荐答案
是.只需返回super的实现即可.
Yes. Just return super's implementation.
if (tableView == myTableView) {
// create and return your custom header
}
else {
return [super tableView:tableView viewForHeaderInSection:section];
}
这篇关于UITableViewDataSource方法,默认实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!