if (_refreshHeaderView == nil)
{
EGORefreshTableHeaderView *view = [[EGORefreshTableHeaderViewalloc] initWithFrame:CGRectMake(0.0f, 0.0f - self.tableView.bounds.size.height, self.view.frame.size.width, self.tableView.bounds.size.height)];
view.delegate = self;
[self.tableView addSubview:view];
_refreshHeaderView = view;
}
if (_moreCell == nil)
{
_moreCell = [[UITableViewCellalloc] initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:@"MoreCell"];
_moreButton = [TTMoreButtonbutton];
[_moreButtonaddTarget:selfaction:@selector(loadMore) forControlEvents:UIControlEventTouchUpInside];
[_moreCell.contentViewaddSubview:_moreButton];
}
return_moreCell;