刷新视图控制器在表底部在ios

问题描述:

块引用 如何设置刷新控制器在iOS结束表中的位置。 后最后的数据刷新刷新视图控制器在表底部在ios

控制器必须显示

+3

我真的不得到你的意思。也许重写你的问题? – TMob

+0

请编辑您的问题,以便清楚问题是什么。 –

+0

什么是刷新控制器? :o –

试试这个 -

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 

    return arrData.count; 
} 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    ... 
    if (arrData.count==indexPath.row+1) { 
     //call reload method & reload tableView 
    } 
    ... 
}