我有一个tableview,我向下滚动,数组数据出现,如果数组在滚动后想要在视图底部出现视图时没有数据
-(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger totalRow = [tableView numberOfRowsInSection:indexPath.section];//first get total rows in that section by current indexPath.
if(indexPath.row == totalRow -1){
[self.tableViewMesages setFrame:CGRectMake(0.0, 65.0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-115.0)];
[self.footer setFrame:CGRectMake(0.0,[UIScreen mainScreen].bounds.size.height-55, [UIScreen mainScreen].bounds.size.width,55.0)];
self.imgvwSmily.alpha=1;
[self.footer addSubview:self.imgvwSmily];
}
else
{
[self.tableViewMesages setFrame:CGRectMake(0.0, 65.0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-65.0)];
[self.footer setFrame:CGRectMake(0.0,[UIScreen mainScreen].bounds.size.height, [UIScreen mainScreen].bounds.size.width,55.0)];
self.imgvwSmily.alpha=0;
[self.footer addSubview:self.imgvwSmily];
}
}
我尝试使用此代码
答案 0 :(得分:0)
您可以添加页脚视图。您的页脚视图将在您的时候显示 数组没有任何数据显示,你到达底部 UITableView的。
了解如何在UITableview中添加页脚视图以下链接
我希望这可能有助于解决您的问题。
由于